/* ============================================
   kanakolu Redesign - Minimal Luxury Style
   Based on simmel.jp aesthetic
   ============================================ */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0d0d0d;
    --text-light: #e8e4de;
    --border-subtle: rgba(232, 228, 222, 0.12);
    --border-hover: rgba(232, 228, 222, 0.4);
    --spacing-xl: 100px;
    --spacing-lg: 72px;
    --spacing-md: 48px;
    --spacing-sm: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 2;
    font-size: 17px;
    letter-spacing: 0.02em;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.1;
}

.section-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: rgba(232, 228, 222, 0.5);
    margin-bottom: 24px;
    display: block;
}

.accent-text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.section {
    padding: var(--spacing-xl) 0;
    border-bottom: 1px solid var(--border-subtle);
}

.section:last-child {
    border-bottom: none;
}

.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 1000;
    padding: 24px 0;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 0.15em;
    text-decoration: none;
    color: var(--text-light);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
}

.nav-menu a {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(232, 228, 222, 0.7);
    transition: color 0.3s ease;
    font-weight: 300;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text-light);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    text-align: center;
}

.hero-content {
    max-width: 1000px;
}

.hero h1 {
    font-size: clamp(64px, 10vw, 140px);
    margin-bottom: var(--spacing-sm);
    line-height: 0.95;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    color: rgba(232, 228, 222, 0.7);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.05em;
}

.hero-description {
    font-size: 14px;
    line-height: 2;
    color: rgba(232, 228, 222, 0.6);
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 16px 48px;
    border: 1px solid var(--border-hover);
    background: transparent;
    color: var(--text-light);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.4s ease;
    font-weight: 300;
    cursor: pointer;
}

.btn:hover {
    background: rgba(232, 228, 222, 0.05);
    border-color: var(--text-light);
}

.btn-primary {
    background: var(--text-light);
    color: var(--bg-dark);
    border-color: var(--text-light);
    font-size: 13px;
    padding: 20px 56px;
    font-weight: 400;
}

.btn-primary:hover {
    background: rgba(232, 228, 222, 0.9);
}

.btn-group {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border-subtle);
    margin-top: var(--spacing-lg);
}

.service-card {
    background: var(--bg-dark);
    padding: var(--spacing-lg);
    transition: background 0.4s ease;
}

.service-card:hover {
    background: rgba(232, 228, 222, 0.02);
}

.service-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    color: rgba(232, 228, 222, 0.3);
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 36px;
    margin-bottom: 16px;
}

.service-card p {
    font-size: 14px;
    line-height: 2;
    color: rgba(232, 228, 222, 0.6);
    margin-bottom: 32px;
}

/* ===== PHILOSOPHY SECTION ===== */
.philosophy-content {
    max-width: 800px;
    margin: var(--spacing-lg) auto 0;
    text-align: center;
}

.philosophy-quote {
    font-size: 32px;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    font-weight: 300;
}

.philosophy-author {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(232, 228, 222, 0.5);
}

/* ===== PROFILE SECTION ===== */
.profile-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-lg);
}

.profile-image-container {
    position: relative;
}

.profile-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.6s ease;
}

.profile-image:hover {
    filter: grayscale(0%);
}

.profile-info h3 {
    font-size: 48px;
    margin-bottom: 12px;
}

.profile-title {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(232, 228, 222, 0.5);
    margin-bottom: var(--spacing-md);
}

.profile-bio {
    font-size: 14px;
    line-height: 2.2;
    color: rgba(232, 228, 222, 0.7);
    margin-bottom: 32px;
}

/* ===== CONTACT SECTION ===== */
.contact-content {
    text-align: center;
    max-width: 600px;
    margin: var(--spacing-lg) auto 0;
}

.contact-info {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-subtle);
}

.contact-item {
    font-size: 12px;
    letter-spacing: 0.1em;
    color: rgba(232, 228, 222, 0.6);
    margin-bottom: 12px;
}

.contact-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: rgba(232, 228, 222, 0.7);
}

/* ===== FOOTER ===== */
.footer {
    padding: var(--spacing-lg) 0 var(--spacing-md);
    border-top: 1px solid var(--border-subtle);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 0.15em;
}

.footer-links {
    display: flex;
    gap: var(--spacing-md);
    list-style: none;
}

.footer-links a {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(232, 228, 222, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-light);
}

.footer-copyright {
    margin-top: var(--spacing-md);
    text-align: center;
    font-size: 10px;
    letter-spacing: 0.1em;
    color: rgba(232, 228, 222, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    :root {
        --spacing-xl: 72px;
        --spacing-lg: 48px;
        --spacing-md: 32px;
    }

    .grid-2col,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .profile-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .profile-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 48px;
        --spacing-lg: 32px;
        --spacing-md: 24px;
    }

    .container {
        padding: 0 32px;
    }

    .header-container {
        padding: 0 32px;
    }

    .nav-menu {
        display: none; /* モバイルメニューは別途実装 */
    }

    .hero h1 {
        font-size: 48px;
    }

    .btn-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
}

/* ===== ADDITIONAL STYLES FOR DETAIL PAGES ===== */

/* Container Narrow */
.container-narrow {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Hero Inner (for detail pages) */
.hero-inner {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    padding-bottom: var(--spacing-xl);
    text-align: center;
    border-bottom: 1px solid var(--border-subtle);
}

.hero-title {
    font-size: clamp(64px, 8vw, 100px);
    margin-bottom: 24px;
    line-height: 0.9;
}

/* Background Subtle */
.bg-subtle {
    background-color: rgba(232, 228, 222, 0.02);
}

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

/* Lead Text */
.lead-text {
    font-size: 18px;
    line-height: 2.4;
    color: rgba(232, 228, 222, 0.8);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: 64px;
    margin-bottom: 16px;
    letter-spacing: 0.1em;
}

.section-subtitle {
    font-size: 14px;
    color: rgba(232, 228, 222, 0.5);
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* Grid 3 Column */
.grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .grid-3col {
        grid-template-columns: 1fr;
    }
}

/* Challenge Cards */
.challenge-card {
    padding: var(--spacing-md);
    border: 1px solid var(--border-subtle);
    transition: all 0.4s ease;
    text-align: center;
}

.challenge-card:hover {
    border-color: var(--border-hover);
    background: rgba(232, 228, 222, 0.02);
}

.challenge-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: rgba(232, 228, 222, 0.15);
    margin-bottom: 16px;
}

.challenge-title {
    font-size: 22px;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.challenge-text {
    font-size: 16px;
    line-height: 2.2;
    color: rgba(232, 228, 222, 0.7);
}

/* Quote Box */
.quote-box {
    border-left: 2px solid var(--border-hover);
    padding: var(--spacing-md) var(--spacing-md);
    margin: var(--spacing-lg) 0;
    background: rgba(232, 228, 222, 0.02);
}

.quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    line-height: 1.9;
    font-style: italic;
    color: rgba(232, 228, 222, 0.8);
}

/* Benefits List */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: var(--spacing-md);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.benefit-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: rgba(232, 228, 222, 0.3);
    min-width: 40px;
}

.benefit-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(232, 228, 222, 0.7);
}

/* Service Detail Cards */
.service-detail-card {
    padding: var(--spacing-md);
    border: 1px solid var(--border-subtle);
    transition: all 0.4s ease;
    text-align: left;
}

.service-detail-card:hover {
    border-color: var(--border-hover);
    background: rgba(232, 228, 222, 0.02);
}

.service-detail-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    color: rgba(232, 228, 222, 0.3);
    margin-bottom: 16px;
}

.service-detail-title {
    font-size: 32px;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.service-detail-description {
    font-size: 16px;
    line-height: 2.2;
    color: rgba(232, 228, 222, 0.7);
    margin-bottom: 24px;
}

.service-detail-list {
    list-style: none;
    padding: 0;
}

.service-detail-list li {
    font-size: 15px;
    line-height: 2.2;
    color: rgba(232, 228, 222, 0.6);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
    padding-left: 24px;
}

.service-detail-list li:before {
    content: '—';
    position: absolute;
    left: 0;
    color: rgba(232, 228, 222, 0.3);
}

.service-detail-list li:last-child {
    border-bottom: none;
}

/* Process List */
.process-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    max-width: 900px;
    margin: 0 auto;
}

.process-item {
    display: flex;
    gap: 32px;
    align-items: start;
}

.process-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: rgba(232, 228, 222, 0.15);
    min-width: 60px;
}

.process-content {
    flex: 1;
}

.process-title {
    font-size: 26px;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.process-text {
    font-size: 16px;
    line-height: 2.2;
    color: rgba(232, 228, 222, 0.7);
}

/* Result Cards */
.result-card {
    padding: var(--spacing-md);
    border: 1px solid var(--border-subtle);
    transition: all 0.4s ease;
    text-align: center;
}

.result-card:hover {
    border-color: var(--border-hover);
    background: rgba(232, 228, 222, 0.02);
}

.result-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    color: rgba(232, 228, 222, 0.3);
    margin-bottom: 16px;
}

.result-title {
    font-size: 24px;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.result-text {
    font-size: 16px;
    line-height: 2.2;
    color: rgba(232, 228, 222, 0.7);
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-xl) 0;
    text-align: center;
    border-top: 1px solid var(--border-subtle);
}

.cta-title {
    font-size: 56px;
    margin-bottom: 32px;
    letter-spacing: 0.08em;
    line-height: 1.2;
}

.cta-text {
    font-size: 17px;
    line-height: 2.2;
    color: rgba(232, 228, 222, 0.7);
    margin-bottom: var(--spacing-md);
}

/* Footer Redesign */
.footer {
    padding: var(--spacing-xl) 0 var(--spacing-md);
    border-top: 1px solid var(--border-subtle);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto var(--spacing-lg);
    padding: 0 var(--spacing-lg);
    align-items: start;
}

.footer-section {
}

.footer-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.footer-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    margin-bottom: 24px;
    letter-spacing: 0.15em;
    color: rgba(232, 228, 222, 0.6);
    text-transform: uppercase;
}

.footer-description {
    font-size: 14px;
    line-height: 2.2;
    color: rgba(232, 228, 222, 0.6);
    max-width: 320px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(232, 228, 222, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--text-light);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-subtle);
    max-width: 1200px;
    margin: 0 auto;
    padding-left: var(--spacing-lg);
    padding-right: var(--spacing-lg);
}

.footer-bottom p {
    font-size: 11px;
    color: rgba(232, 228, 222, 0.3);
    letter-spacing: 0.05em;
}

/* Feelings List (Individual Coaching) */
.feelings-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
}

.feeling-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.feeling-marker {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(232, 228, 222, 0.3);
    min-width: 8px;
}

.feeling-text {
    font-size: 16px;
    line-height: 2.2;
    color: rgba(232, 228, 222, 0.7);
}

/* Benefit Cards (Individual Coaching) */
.benefit-card {
    padding: var(--spacing-md);
    border: 1px solid var(--border-subtle);
    transition: all 0.4s ease;
    text-align: center;
}

.benefit-card:hover {
    border-color: var(--border-hover);
    background: rgba(232, 228, 222, 0.02);
}

.benefit-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    color: rgba(232, 228, 222, 0.3);
    margin-bottom: 16px;
}

.benefit-title {
    font-size: 24px;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.benefit-description {
    font-size: 16px;
    line-height: 2.2;
    color: rgba(232, 228, 222, 0.7);
}

/* Info Box */
.info-box {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    border: 1px solid var(--border-subtle);
    background: rgba(232, 228, 222, 0.02);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.info-title {
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
}

.info-text {
    font-size: 16px;
    line-height: 2.2;
    color: rgba(232, 228, 222, 0.7);
}

/* Testimonial Box */
.testimonial-box {
    margin-top: var(--spacing-lg);
    text-align: center;
    padding: var(--spacing-md);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-text {
    font-size: 17px;
    line-height: 2.4;
    color: rgba(232, 228, 222, 0.7);
    font-style: italic;
}

/* Message Box */
.message-box {
    padding: var(--spacing-md);
    border: 1px solid var(--border-subtle);
    background: rgba(232, 228, 222, 0.02);
}

.message-author {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-subtle);
}

.author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(100%);
}

.author-info {
}

.author-name {
    font-size: 18px;
    margin-bottom: 4px;
    letter-spacing: 0.05em;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
}

.author-title {
    font-size: 12px;
    color: rgba(232, 228, 222, 0.5);
}

.message-text {
    font-size: 16px;
    line-height: 2.3;
    color: rgba(232, 228, 222, 0.7);
}

/* Reason Cards (Logistics) */
.reason-card {
    text-align: center;
    padding: var(--spacing-md);
}

.reason-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    color: rgba(232, 228, 222, 0.1);
    margin-bottom: 16px;
}

.reason-title {
    font-size: 28px;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.reason-text {
    font-size: 16px;
    line-height: 2.2;
    color: rgba(232, 228, 222, 0.7);
}

/* Header Content (used in new pages) */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: var(--text-light);
    text-decoration: none;
}

/* Menu Toggle (Mobile) */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--text-light);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 60px;
        --spacing-lg: 40px;
        --spacing-md: 32px;
        --spacing-sm: 20px;
    }

    body {
        font-size: 15px;
        line-height: 2;
    }

    .container {
        padding: 0 24px !important;
        max-width: 100% !important;
    }

    .container-narrow {
        max-width: 100% !important;
        padding: 0 24px !important;
    }

    /* Force override inline styles */
    .container[style],
    .container-narrow[style] {
        max-width: 100% !important;
        padding: 0 24px !important;
        margin: 0 auto !important;
    }

    .header {
        padding: 16px 0;
    }

    .header-container,
    .header-content {
        padding: 0 24px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(13, 13, 13, 0.98);
        flex-direction: column;
        padding: 32px;
        gap: 24px;
        border-top: 1px solid var(--border-subtle);
    }

    .nav-menu.active {
        display: flex;
    }

    /* Hero Section Mobile */
    .hero {
        min-height: 80vh !important;
        padding-top: 120px;
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .hero h1 {
        font-size: 48px !important;
        line-height: 1;
    }

    .hero-subtitle {
        font-size: 16px !important;
    }

    .hero-description {
        font-size: 14px !important;
    }

    .hero-title {
        font-size: 56px !important;
    }

    .hero-inner {
        min-height: 50vh !important;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    /* Grids Mobile - Force override */
    .grid-2col,
    .grid-3col,
    .services-grid,
    div[style*="grid-template-columns"],
    [class*="grid"] {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .profile-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    .profile-image {
        height: 400px;
    }

    /* Section Titles Mobile - Force override */
    .section-title,
    h2[style*="font-size"] {
        font-size: 40px !important;
        margin-bottom: 16px !important;
    }

    .section-subtitle {
        font-size: 14px !important;
    }

    .section-label {
        font-size: 10px;
    }

    .section-header {
        margin-bottom: 40px !important;
    }

    /* Lead Text Mobile - Force override */
    .lead-text,
    p[class*="lead"] {
        font-size: 16px !important;
        line-height: 2.2 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Cards Mobile - Force override */
    .challenge-card,
    .service-detail-card,
    .result-card,
    .benefit-card,
    .reason-card,
    div[class*="card"],
    div[style*="padding"] {
        padding: 32px 24px !important;
        text-align: center !important;
    }

    .challenge-number,
    .service-detail-number,
    .result-number,
    div[class*="number"] {
        font-size: 40px !important;
        margin-bottom: 16px !important;
    }

    .challenge-title,
    .service-detail-title,
    .result-title,
    .benefit-title,
    .reason-title,
    h3[style*="font-size"] {
        font-size: 20px !important;
        margin-bottom: 16px !important;
    }

    .challenge-text,
    .service-detail-description,
    .result-text,
    .benefit-description,
    .reason-text,
    p[class*="text"],
    p[style*="font-size: 17px"],
    p[style*="font-size: 16px"] {
        font-size: 15px !important;
        line-height: 2.2 !important;
    }

    .service-detail-list li {
        font-size: 14px !important;
        padding-left: 16px !important;
    }

    /* Process Mobile - Force override */
    .process-item,
    div[class*="process"] {
        flex-direction: column !important;
        gap: 16px !important;
        align-items: flex-start !important;
    }

    .process-number {
        font-size: 36px !important;
        min-width: 50px;
    }

    .process-title {
        font-size: 22px !important;
    }

    .process-text {
        font-size: 15px !important;
    }

    /* Quote Box Mobile */
    .quote-box {
        padding: 32px 24px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .quote-text {
        font-size: 18px !important;
    }

    /* CTA Section Mobile - Force override */
    .cta-section {
        padding: 60px 24px !important;
    }

    .cta-title,
    h2[class*="cta"] {
        font-size: 36px !important;
        line-height: 1.3 !important;
        margin-bottom: 24px !important;
    }

    .cta-text {
        font-size: 16px !important;
        line-height: 2.2 !important;
    }

    /* Buttons Mobile - Force override */
    .btn,
    .btn-primary,
    a[class*="btn"] {
        width: 100% !important;
        text-align: center !important;
        padding: 18px 40px !important;
        font-size: 13px !important;
        display: block !important;
        max-width: 100% !important;
    }

    .btn-group {
        flex-direction: column !important;
        gap: 16px !important;
        width: 100% !important;
    }

    /* Footer Mobile - Force override */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 48px !important;
        text-align: left !important;
        padding: 0 24px !important;
    }

    .footer-title {
        font-size: 24px !important;
    }

    .footer-heading {
        font-size: 14px !important;
        margin-bottom: 16px !important;
    }

    .footer-description {
        font-size: 13px !important;
        max-width: 100% !important;
    }

    .footer-links a {
        font-size: 13px !important;
    }

    .footer-bottom {
        padding: 0 24px !important;
    }

    /* Feelings List Mobile */
    .feeling-item {
        padding: 20px 0 !important;
    }

    .feeling-text {
        font-size: 15px !important;
    }

    /* Info Box Mobile */
    .info-box {
        padding: 32px 24px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .info-title {
        font-size: 16px !important;
    }

    .info-text {
        font-size: 15px !important;
    }

    /* Message Box Mobile */
    .message-box {
        padding: 32px 24px !important;
    }

    .message-author {
        flex-direction: column !important;
        text-align: center !important;
        gap: 16px !important;
    }

    .author-image {
        width: 100px !important;
        height: 100px !important;
    }

    .author-name {
        font-size: 16px !important;
    }

    .message-text {
        font-size: 15px !important;
    }

    /* Testimonial Mobile */
    .testimonial-text {
        font-size: 15px !important;
    }

    .testimonial-box {
        padding: 32px 24px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Benefits List Mobile */
    .benefits-list {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .benefit-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
    }

    .benefit-number {
        font-size: 20px !important;
    }

    .benefit-text {
        font-size: 15px !important;
    }

    /* Service Number Mobile */
    .service-number {
        font-size: 12px !important;
    }

    .service-card h3 {
        font-size: 28px !important;
        margin-bottom: 12px !important;
    }

    .service-card p {
        font-size: 13px !important;
    }

    /* All inline styles override */
    div[style*="display: grid"],
    div[style*="max-width"],
    div[style*="padding"],
    section[style*="padding"] {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    /* Philosophy Quote Mobile */
    .philosophy-quote {
        font-size: 22px !important;
        line-height: 1.7 !important;
    }

    .philosophy-content {
        padding: 0 !important;
    }

    /* Contact Info Mobile */
    .contact-item {
        font-size: 14px !important;
    }

    .contact-item a {
        font-size: 14px !important;
        word-break: break-all;
    }

    /* Works page specific */
    .case-item,
    div[style*="border-left"] {
        border-left: none !important;
        padding-left: 0 !important;
        margin-top: 32px !important;
    }

    /* Company page specific */
    div[style*="grid-template-columns: 200px"] {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    /* All text with inline font-size */
    p[style*="font-size: 14px"],
    p[style*="font-size: 15px"],
    p[style*="font-size: 16px"],
    p[style*="font-size: 17px"],
    p[style*="font-size: 18px"],
    p[style*="font-size: 19px"] {
        font-size: 15px !important;
        line-height: 2.2 !important;
    }

    /* All headings with inline font-size */
    h1[style*="font-size"],
    h2[style*="font-size"],
    h3[style*="font-size"] {
        font-size: inherit !important;
    }

    h1[style*="font-size"] {
        font-size: 48px !important;
    }

    h2[style*="font-size: 64px"],
    h2[style*="font-size: 72px"],
    h2[style*="font-size: 80px"] {
        font-size: 36px !important;
    }

    h3[style*="font-size: 24px"],
    h3[style*="font-size: 26px"],
    h3[style*="font-size: 28px"] {
        font-size: 20px !important;
    }
}
