:root {
    --primary-color: #2E5D42;
    --secondary-color: #8FBC8F;
    --accent-color: #D4AF37;
    --text-color: #333333;
    --text-light: #666666;
    --background-light: #F9F9F9;
    --white: #FFFFFF;
    --font-main: 'Noto Sans JP', sans-serif;
    --font-heading: 'Zen Kaku Gothic New', sans-serif;
    --max-width: 1200px;
    --header-height: 70px;
}

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

html {
    scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.4;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.8;
}

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

ul {
    list-style: none;
}

/* Utilities */
.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}

/* PC/SP Text Toggle (Desktop defaults) */
.pc-text {
    display: inline;
}

.sp-text {
    display: none;
}

.section {
    padding: 80px 0;
}

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

.section-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 10px auto 0;
}

.section-title-white {
    color: var(--white);
}

.section-title-white::after {
    background-color: var(--white);
}

/* Utility Classes */
.sp-br {
    display: none;
}

@media (max-width: 768px) {
    .sp-br {
        display: block;
    }
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.section-subtitle-white {
    color: rgba(255, 255, 255, 0.8);
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--white);
    background-color: var(--primary-color);
    border-radius: 50px;
    letter-spacing: 0.05em;
    cursor: pointer;
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 1;
}

.btn-accent {
    background-color: var(--accent-color);
}

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



.btn-line svg {
    stroke: currentColor;
    fill: currentColor;
}

.btn-line {
    background-color: #06C755;
    color: var(--white);
    font-size: 1.2rem;
    padding: 18px 50px;
    box-shadow: 0 8px 25px rgba(6, 199, 85, 0.4);
    animation: ctaPulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.btn-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

.btn-line:hover {
    background-color: #05b34c;
    color: var(--white);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(6, 199, 85, 0.5);
}

@keyframes linePulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(6, 199, 85, 0.4);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 12px 35px rgba(6, 199, 85, 0.6);
    }
}

/* CTA Button with Pulse Animation - 目立つボタン */
.btn-cta-pulse {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: var(--white);
    font-size: 1.2rem;
    padding: 18px 50px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    animation: ctaPulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.btn-cta-pulse::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

.btn-cta-pulse:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
    opacity: 1;
}

@keyframes ctaPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.header .container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-link {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
}

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

.bar {
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background-image: url('images/after2.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(46, 93, 66, 0.85) 0%,
            rgba(46, 93, 66, 0.7) 50%,
            rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.hero-leaf {
    position: absolute;
    color: var(--white);
}

.hero-leaf-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: floatLeaf1 8s ease-in-out infinite;
}

.hero-leaf-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -75px;
    animation: floatLeaf2 10s ease-in-out infinite;
}

@keyframes floatLeaf1 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-20px, 20px) rotate(5deg);
    }
}

@keyframes floatLeaf2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(20px, -15px) rotate(-5deg);
    }
}

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

.hero-ribbon {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    letter-spacing: 0.05em;
}

.hero-subtitle {
    margin: 0;
    line-height: 1.5;
    font-size: clamp(1rem, 3vw, 1.3rem);
    /* Reduced significantly from 2.5rem */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 25px;
    /* Added spacing from subtitle to showcase/buttons */
}

/* Reduced spacing for PC to move text UP slightly */
.hero-content {
    padding-top: 10px;
    /* Reduced padding top */
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.6s ease-out backwards;
}

.hero-badge:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-badge:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-badge:nth-child(3) {
    animation-delay: 0.3s;
}

.hero-badge svg {
    stroke: var(--accent-color);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-title-sub {
    display: block;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-title-accent {
    color: var(--accent-color);
    position: relative;
}

.hero-title-accent::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--accent-color);
    opacity: 0.3;
    z-index: -1;
}

.hero-text {
    font-size: 1.3rem;
    margin-bottom: 35px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.5s backwards;
    line-height: 2;
}

.hero-text strong {
    color: var(--accent-color);
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.hero-btn-phone,
.hero-btn-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    font-size: 1.1rem;
}

.hero-btn-phone {
    background: var(--white);
    color: var(--primary-color);
}

.hero-btn-phone svg {
    stroke: var(--primary-color);
}

.hero-btn-main {
    background: linear-gradient(135deg, var(--accent-color) 0%, #c9a030 100%);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
}

.hero-btn-main svg {
    stroke: var(--white);
}

.hero-btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.45);
}

.hero-campaign-box {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-radius: 10px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease-out 0.7s backwards;
}

.campaign-tag {
    background: #e74c3c;
    color: var(--white);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.hero-campaign-box p {
    margin: 0;
    font-size: 0.95rem;
}

.hero-campaign-box strong {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-number small {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--white);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}



@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Problems Section */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.problem-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--background-light);
    border-radius: 10px;
}

.problem-icon {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.problem-icon svg {
    width: 48px;
    height: 48px;
}

.problem-item p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.solution-box {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.solution-lead {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.solution-lead strong {
    color: var(--accent-color);
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.feature-icon-box {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon-box svg {
    stroke: var(--white);
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

/* Price Cards */
.price-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.price-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.price-details-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Hide Price Nav on PC (Global) */
.price-nav {
    display: none;
}

.price-card-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px;
    text-align: center;
}

.price-card-header h3 {
    font-size: 1.1rem;
}

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

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.price-row:last-child {
    border-bottom: none;
}

.price-label {
    color: var(--text-light);
}

.price-value {
    font-weight: bold;
    color: var(--primary-color);
}

.price-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Price Highlights */
.price-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.price-highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--accent-color);
}

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

.highlight-content h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.highlight-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Main Price Cards */
.price-main-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.price-main-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.price-main-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.price-main-card.featured {
    border: 3px solid var(--accent-color);
}

.price-main-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a7550 100%);
    color: var(--white);
    padding: 20px;
    text-align: center;
    position: relative;
}

.price-main-header h3 {
    font-size: 1.3rem;
    margin: 0;
}

.price-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
}

.price-badge.best {
    background: #e74c3c;
}

.price-main-body {
    padding: 30px 20px;
    text-align: center;
}

.price-from {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.price-big {
    font-size: 3.2rem;
    /* Increased from 2.8rem for more impact */
    font-weight: 800;
    /* Bolder */
    color: var(--primary-color);
    line-height: 1.2;
    margin: 0;
}

.price-big span {
    font-size: 1.2rem;
    font-weight: 400;
}

.price-unit {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 5px;
}

.price-features {
    padding: 0 20px 25px;
    list-style: none;
}

.price-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-color);
    border-bottom: 1px solid #f0f0f0;
}

.price-features li:last-child {
    border-bottom: none;
}

/* Price Tax Included */
.price-tax-inc {
    font-size: 0.8rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-top: 3px;
}

/* Price Cards Note */
.price-cards-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* Carousel Improvements */
/* Fix Badge Cutoff */
.price-main-card {
    overflow: visible;
    /* Ensure badge floats out */
    z-index: 1;
    /* Stack usage */
    border-radius: 15px;
    /* applied to container, but overflow visible */
}

/* Apply borders to children to maintain rounded look with overflow visible */
.price-main-header {
    overflow: visible;
    position: relative;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.price-main-body {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    /* If body background is different from card, set it. Assuming white on white or handled by card bg */
}

.price-badge {
    position: absolute;
    top: -12px;
    right: 15px;
    z-index: 10;
    /* Ensure it stays within bounds if needed, or allow float */
}

/* Hero Use Case: Large Feature Badges */
.hero-feature-badges-large {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.badge-large {
    font-size: 0.95rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.badge-gold {
    background: linear-gradient(135deg, #FFD700, #FDB931);
    color: #333;
    border: 1px solid #FFF;
}

.badge-accent {
    background: var(--accent-color);
    color: var(--white);
    border: 1px solid #FFF;
}

/* Hero Showcase Large */
.hero-showcase-large {
    display: flex;
    gap: 25px;
    margin: 30px 0;
    justify-content: center;
}

.hero-showcase-card.large {
    width: 280px;
    height: 190px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.hero-showcase-card.large .showcase-price {
    font-size: 1rem;
}

/* Hero Buttons Layout */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 30px;
}

.hero-buttons .btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Hero Showcase Cards */
.hero-showcase {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

.hero-showcase-card {
    position: relative;
    width: 220px;
    height: 150px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero-showcase-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

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

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
    padding: 15px 12px 12px;
    text-align: center;
}

.showcase-label {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 10px;
    margin-bottom: 5px;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}


.showcase-service {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
}

.showcase-price {
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 3px 0 0;
}

.showcase-price span {
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

/* Comparison Layout with Images */
.comparison-layout {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 20px;
    align-items: stretch;
}

.comparison-images {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 55px;
    /* Align with table header */
}

.comparison-image-item {
    position: relative;
    overflow: hidden;
    height: 70px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.comparison-image-item:last-child {
    border-bottom: none;
}

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

.comparison-image-item span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(46, 93, 66, 0.85);
    color: var(--white);
    font-size: 0.65rem;
    padding: 3px 6px;
    text-align: center;
}

/* Comparison Table Image Adjustment */
.case-col.case-with-image {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    text-align: left;
}

.case-col img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.case-text {
    display: flex;
    flex-direction: column;
}

/* Comparison Table Layout Adjustment */
.price-comparison-table-wrapper {
    overflow-x: auto;
}

.price-comparison-table th,
.price-comparison-table td {
    vertical-align: middle;
}

/* Table Tax Note */
.table-tax-note {
    text-align: right;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 10px;
}

/* Comparison Table Section */
.comparison-section {
    background: var(--background-light);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 50px;
}

.comparison-title {
    text-align: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.comparison-table thead th {
    padding: 18px 15px;
    font-size: 0.95rem;
    background: var(--primary-color);
    color: var(--white);
}

.comparison-table thead th:first-child {
    background: #f5f5f5;
    color: transparent;
}

.comparison-table thead th.our-company {
    background: var(--accent-color);
    font-size: 1.1rem;
}

.comparison-table tbody td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.comparison-table tbody td.feature-name {
    text-align: left;
    font-weight: 600;
    color: var(--text-color);
    background: #fafafa;
}

.comparison-table tbody td.our-company {
    background: rgba(212, 175, 55, 0.08);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.check-green {
    color: var(--primary-color);
    font-weight: 700;
}

/* Price Details Accordion */
.price-details-section {
    margin-bottom: 40px;
}

.price-details-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 30px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s;
}

.price-details-toggle:hover {
    background: var(--primary-color);
    color: var(--white);
}

.price-details-toggle:hover .toggle-icon {
    stroke: var(--white);
}

.price-details-toggle .toggle-icon {
    transition: transform 0.3s;
}

.price-details-toggle.active .toggle-icon {
    transform: rotate(180deg);
}

.price-details-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.3s ease-out;
}

.price-details-content.active {
    max-height: 3000px;
    padding-top: 30px;
}

/* Price Tables (New detailed pricing) */
.price-tables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.price-table-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.price-table-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a7550 100%);
    color: var(--white);
    padding: 12px 24px;
    text-align: center;
}

.price-table-header h3 {
    font-size: 1.15rem;
    margin: 0;
    min-height: 1.8em;
    /* Ensure consistent height */
    display: flex;
    align-items: center;
    justify-content: center;
}


.price-table-note {
    font-size: 0.8rem;
    margin-top: 8px;
    opacity: 0.9;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-table thead th {
    background: rgba(46, 93, 66, 0.08);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 15px;
    text-align: left;
}

.price-table thead th:last-child {
    text-align: right;
}

.price-table tbody tr {
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
}

.price-table tbody tr:last-child {
    border-bottom: none;
}

.price-table tbody tr:hover {
    background: rgba(46, 93, 66, 0.03);
}

.price-table tbody td {
    padding: 12px 15px;
    font-size: 0.95rem;
}

.price-table tbody td:first-child {
    color: var(--text-color);
}

.price-table tbody td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--primary-color);
}

/* Other Services Section */
.price-other-services {
    margin-top: 50px;
    margin-bottom: 40px;
}

.price-other-title {
    text-align: center;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
}

.price-other-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    margin: 10px auto 0;
}

.price-other-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.price-other-item {
    background: var(--white);
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(46, 93, 66, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.price-other-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.price-other-item h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 10px;
}

.price-other-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0;
}

.price-other-value span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
}

.price-other-note {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 10px;
    line-height: 1.5;
}

/* Highlight Icon Box */
.highlight-icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a7550 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon-box svg {
    stroke: var(--white);
}

/* Price Comparison Table */
.price-comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 30px;
}

.price-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.price-comparison-table thead th {
    padding: 10px 10px;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
}

.price-comparison-table thead th.case-col {
    text-align: left;
    background: #f5f5f5;
    color: var(--text-color);
}

.price-comparison-table thead th.company-a {
    background: #ddd;
    color: #666;
}

.price-comparison-table thead th.company-b {
    background: #e0e0e0;
    color: #666;
}

.price-comparison-table thead th.company-ours {
    background: var(--accent-color);
    color: var(--white);
}

.price-comparison-table tbody td {
    padding: 18px 20px;

    padding: 18px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.price-comparison-table tbody td.case-col {
    text-align: left;
    background: #fafafa;
}

.price-comparison-table tbody td.case-col strong {
    display: block;
    color: var(--text-color);
    font-size: 0.9rem;
}

.price-comparison-table tbody td.case-col span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.price-comparison-table tbody td.company-a,
.price-comparison-table tbody td.company-b {
    color: #999;
    text-decoration: line-through;
}

.price-comparison-table tbody td.company-ours {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    font-size: 1.1rem;
}

.price-comparison-table tbody td.company-ours strong {
    color: var(--primary-color);
}

.price-comparison-table tbody tr:last-child td {
    border-bottom: none;
}

/* Why Cheaper Section */
.why-cheaper {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    margin-top: 40px;
    margin-bottom: 60px;
}


.why-cheaper h4 {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.why-cheaper-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.why-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.why-icon {
    width: 50px;
    height: 50px;
    background: rgba(46, 93, 66, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-icon svg {
    stroke: var(--primary-color);
}

.why-content h5 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 5px;
}

.why-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* Benefits Section */
.benefits-section {
    margin-bottom: 60px;
    padding: 0 10px;
    /* Slight horizontal buffer */
}


.benefits-title {
    text-align: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.benefit-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.benefit-card.benefit-discount {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border: 2px solid var(--accent-color);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(46, 93, 66, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    stroke: var(--primary-color);
}

.benefit-card.benefit-discount .benefit-icon {
    background: rgba(212, 175, 55, 0.2);
}

.benefit-card.benefit-discount .benefit-icon svg {
    stroke: var(--accent-color);
}

.benefit-tag {
    display: inline-block;
    background: #e74c3c;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: bold;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.benefit-content h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.benefit-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.benefit-content p strong {
    color: #e74c3c;
}

/* Service Area Section */
.area-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.area-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.area-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a7550 100%);
    color: var(--white);
    padding: 18px 25px;
}

.area-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.area-cities {
    padding: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.area-city {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(46, 93, 66, 0.08);
    color: var(--primary-color);
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.3s;
}

.area-city:hover {
    background: rgba(46, 93, 66, 0.15);
}

.area-city.main {
    background: var(--primary-color);
    color: var(--white);
}

/* Area Content Layout - Row Style */
.area-content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.area-map-container {
    width: 100%;
}

.area-map-container iframe {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-hint {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 10px;
}

.area-list-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.area-card-compact {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.area-header-compact {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a7550 100%);
    color: var(--white);
    padding: 12px 20px;
}

.area-header-compact h3 {
    margin: 0;
    font-size: 1rem;
}

.area-cities-compact {
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.area-city-btn {
    display: inline-block;
    padding: 8px 14px;
    background: rgba(46, 93, 66, 0.08);
    color: var(--primary-color);
    border: 2px solid transparent;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.area-city-btn:hover {
    background: rgba(46, 93, 66, 0.15);
    border-color: var(--primary-color);
}

.area-city-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.area-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Price Notes Section */
.price-notes {
    background: rgba(46, 93, 66, 0.05);
    border-radius: 10px;
    padding: 25px 30px;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-color);
}

.price-notes p {
    margin: 0 0 8px;
    font-size: 0.95rem;
    color: var(--text-color);
}

.price-notes p:last-child {
    margin-bottom: 0;
}

.price-tax-note {
    font-weight: 600;
    color: var(--primary-color) !important;
}

.cta-box {
    background: var(--background-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.cta-box p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Works Section */
.works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.work-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.work-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.work-before,
.work-after {
    position: relative;
}

.work-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    z-index: 2;
}

.work-after .work-label {
    background: var(--accent-color);
}

.work-before img,
.work-after img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.work-description {
    padding: 20px;
}

.work-description h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.work-description p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Works Showcase (New Layout) */
.works-showcase {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.work-showcase-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.work-showcase-images {
    display: flex;
    align-items: stretch;
    background: #f5f5f5;
}

.work-showcase-images .work-before,
.work-showcase-images .work-after {
    flex: 1;
    position: relative;
}

.work-showcase-images .work-before img,
.work-showcase-images .work-after img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
}

.work-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--white);
    padding: 0 15px;
}

.work-showcase-details {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.work-showcase-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.work-showcase-header h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin: 0;
}

.work-area-tag {
    background: var(--background-light);
    color: var(--text-light);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.work-showcase-description {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

.work-showcase-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.work-meta-item {
    text-align: center;
}

.meta-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.meta-value {
    display: block;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.meta-value.price {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.works-cta {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
}

.works-cta p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-color);
}

/* New Works Showcase Layout - Images Focus */
.work-showcase-item-new {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.work-images-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.work-image-box {
    position: relative;
    overflow: hidden;
}

.work-image-box img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.work-image-box:hover img {
    transform: scale(1.02);
}

.work-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    z-index: 2;
    letter-spacing: 0.05em;
}

.work-label-after {
    background: var(--accent-color);
}

.work-info-card {
    padding: 30px;
}

.work-info-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.work-info-header h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin: 0;
}

.work-description-text {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.work-customer-voice {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9f5eb 100%);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
}

.voice-label {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.work-customer-voice p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.7;
    font-style: italic;
}

.work-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.work-meta-item-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46, 93, 66, 0.08);
    padding: 8px 15px;
    border-radius: 25px;
}

.work-meta-item-new .meta-label {
    font-size: 0.75rem;
    color: var(--text-light);
}

.work-meta-item-new .meta-value {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.work-meta-item-new .meta-value.price {
    color: var(--accent-color);
    font-size: 1rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--background-light);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-before,
.testimonial-after {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.testimonial-before strong {
    color: var(--text-light);
}

.testimonial-after strong {
    color: var(--primary-color);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: start;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-content h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.about-content p {
    margin-bottom: 15px;
}

.profile-badges {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* Promise Section */
.promise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.promise-item {
    background: var(--background-light);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.promise-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.promise-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Flow Section */
.flow-steps {
    max-width: 900px;
    margin: 0 auto;
}

.flow-step {
    display: grid;
    grid-template-columns: 60px 450px 1fr;

    gap: 30px;
    align-items: start;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #ddd;
}

.flow-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.step-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.step-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.step-content p {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.step-time {
    color: var(--accent-color);
    font-weight: bold;
}

.step-hint {
    background: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 10px;
}

/* Area Section */
.area-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.area-column h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.area-column p {
    color: var(--text-light);
}

.area-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 8px;
    padding: 20px 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.faq-question::before {
    content: 'Q.';
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-right: 10px;
    flex-shrink: 0;
}

.faq-answer {
    padding-left: 30px;
    color: var(--text-color);
    font-size: 0.95rem;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-box {
    background: var(--white);
    color: var(--text-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.contact-box .btn {
    width: 100%;
    max-width: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    /* Standardize height/padding for both buttons in contact box */
    padding: 18px 20px;
    box-sizing: border-box;
    height: auto;
    min-height: 60px;
    /* Ensure visual consistency in shape */
    border-radius: 50px !important;
    /* Force pill shape for both */
}

.contact-box .btn+.btn {
    margin-top: 15px;
}

.contact-box h3 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-phone {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.contact-hours {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.contact-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 15px;
}

.contact-email {
    color: var(--text-light);
    margin-top: 15px;
}

.company-info {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}

.company-info p {
    margin-bottom: 5px;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .price-cards {
        grid-template-columns: 1fr;
    }

    .price-tables-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .price-other-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .promise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Pricing Accents Base */
.pricing-accents {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
    margin-top: 20px;
}

.pricing-accents img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.pricing-accents img:hover {
    transform: scale(1.03);
}

@media (max-width: 768px) {

    /* Expand container to use more screen space on mobile */
    .container {
        width: 95%;
    }

    .section {
        padding: 60px 15px;
    }

    .section-title {
        font-size: clamp(1.2rem, 6vw, 1.8rem);
        /* Dynamic size to prevent wrapping */
        word-break: keep-all;
        /* Try to keep words together if possible */
        overflow-wrap: break-word;
        line-height: 1.3;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 40px;
        gap: 30px;
        transition: 0.3s;
    }

    .nav-menu.active {
        right: 0;
    }

    .menu-toggle {
        display: flex;
    }

    /* Hero Section Polish */
    .hero-title {
        font-size: clamp(1.4rem, 5vw, 2.0rem);
        /* Reduced from 1.8-2.5rem */
        margin-bottom: 10px;
    }

    .hero-title-sub {
        font-size: 0.9rem;
    }

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

    .hero-badges {
        gap: 10px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 4px 8px;
        /* Reduced padding */
    }

    /* Reduce vertical spacing in hero elements */
    /* Reduce vertical spacing in hero elements */
    .hero-content {
        padding-top: 50px;
        /* Force specific mobile spacing */
        gap: 8px;
        /* Further reduced gap */
        margin-top: -30px;
        /* Pull up to counteract potential header space if needed */
    }

    .hero-area-badge {
        margin-bottom: 5px !important;
        /* Minimized spacing */
        padding: 4px 12px;
        font-size: 0.8rem;
    }

    .hero-title {
        margin-bottom: 2px !important;
        /* Minimized spacing */
    }

    .hero-feature-badges-large {
        margin-bottom: 5px !important;
        /* Minimized spacing */
        gap: 3px;
    }

    .hero-subtitle {
        margin-bottom: 10px !important;
        /* Minimized spacing */
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        /* Reduced slightly to save vertical space */
        line-height: 1.3;
    }

    /* Stack Benefits Vertically -> CHANGED: Keep Horizontal per user request */
    .hero-feature-badges-large {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 5px;
    }

    .badge-large {
        width: auto;
        flex: 0 1 auto;
        font-size: 0.7rem;
        padding: 4px 8px;
        white-space: nowrap;
    }

    .solution-lead {
        /* Ensure it fits on one line if possible, or breaks cleanly */
        font-size: 1rem;
        /* Reduced from 1.1rem clamp */
        white-space: normal;
        /* Allow wrapping if absolutely necessary but size should prevent it */
        line-height: 1.4;
    }

    .solution-lead strong {
        font-size: 1.3rem;
        /* Keep emphasis but smaller */
        display: inline-block;
        /* Keep together */
    }

    .hero-ribbon {
        margin-bottom: 5px !important;
        /* Reduced gap significantly */
    }

    /* Hero Showcase Compact */
    .hero-showcase-large {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns side-by-side to save vertical space */
        gap: 8px;
        margin-bottom: 15px;
        /* Constrain width to effectively reduce image size to ~2/3 as requested */
        width: 72%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-showcase-card.large {
        width: 100%;
        height: auto;
        aspect-ratio: 4/5;
        /* Slightly taller than wide, but fits 2 col better */
    }

    .hero-showcase-card.large {
        width: 100%;
        height: auto;
        /* Taller image per request (approx square) */
        aspect-ratio: 1/1;
    }

    .showcase-price {
        font-size: 0.7rem;
        /* Reduced to ~2/3 of previous size */
        white-space: nowrap;
        display: flex;
        align-items: baseline;
        gap: 1px;
        /* Tighter gap */
        flex-wrap: wrap;
        /* Allow wrapping if absolutely necessary, but preferred small font */
    }

    .showcase-price span {
        font-size: 0.6rem;
        /* Very small unit text */
    }

    .showcase-price .tax-note {
        font-size: 0.55rem;
        /* Tiny tax note */
    }

    .hero-showcase-card.large .showcase-overlay {
        padding: 8px;
        /* Gain horizontal space */
    }

    .showcase-service {
        font-size: 0.9rem;
    }

    /* Hero Buttons - HORIZONTAL SMALL (Mobile) */
    .hero-buttons {
        flex-direction: row;
        align-items: stretch;
        gap: 5px;
        /* Tighter gap */
        width: 100%;
        justify-content: space-between;
        padding: 0 5px;
        /* Ensure container itself has slight breathing room if needed, or 0 if full bleed */
    }

    /* Ensure old class also handled just in case */
    .hero-cta-group {
        flex-direction: row;
        align-items: stretch;
        gap: 5px;
        width: 100%;
    }

    .hero-btn-phone,
    .hero-btn-main,
    .btn-line,
    .btn-lg {
        flex: 1;
        /* Equal width */
        width: auto !important;
        max-width: none !important;
        width: auto !important;
        max-width: none !important;
        padding: 6px 0 !important;
        /* Force minimal padding */
        white-space: nowrap;
        font-size: 0.7rem;
        /* Smaller font */
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 3px;
        /* Tighter icon gap */
        height: 34px;
        /* Slimmer height */
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        animation: none;
        border-radius: 50px !important;
    }

    /* Text Switching for Mobile Buttons */
    .btn-text-pc {
        display: none;
    }

    .btn-text-sp {
        display: inline;
    }

    /* Reduce icon size further */
    .hero-buttons svg,
    .hero-btn-phone svg,
    .hero-btn-main svg,
    .btn-line svg {
        width: 14px;
        height: 14px;
    }

    .hero-campaign-box {
        flex-direction: column;
        gap: 10px;
        padding: 15px 20px;
    }

    .hero-stats {
        gap: 25px;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-leaf-1 {
        width: 200px;
        height: 200px;
        top: -50px;
        right: -50px;
    }

    .hero-leaf-2 {
        width: 150px;
        height: 150px;
    }

    /* Stack Why Cheap & Benefits */
    .why-cheaper-grid,
    .benefits-grid,
    .problems-grid,
    .features-grid,
    .promise-grid {
        grid-template-columns: 1fr;
        /* Stack items vertically */
        gap: 20px;
    }

    /* Icon + Heading / Text Below Layout (Grid) for Mobile */
    .why-item,
    .benefit-card {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 10px 15px;
        align-items: start;
        /* Changed from center to start for better multi-line handling */
        text-align: left;
    }

    /* Fix Benefit Tag Overlap */
    .benefit-content {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .benefit-tag {
        align-self: flex-start;
        margin-bottom: 2px;
        position: static;
        /* Ensure no absolute positioning causes overlap */
        transform: none;
    }

    .benefit-card h4 {
        margin-top: 0;
    }

    .why-content,
    .benefit-content {
        display: contents;
        /* Unwrap children to grid parent */
    }

    .why-icon,
    .benefit-icon {
        grid-row: 1;
        grid-column: 1;
        margin-bottom: 0;
        width: 40px;
        /* Ensure size consistency */
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .why-content h5,
    .benefit-content h4 {
        grid-row: 1;
        grid-column: 2;
        margin: 0;
        font-size: 1.1rem;
        align-self: center;
    }

    .why-content p,
    .benefit-content p {
        grid-row: 2;
        grid-column: 1 / -1;
        /* Span full width */
        margin: 0;
        padding-left: 0;
        font-size: 0.95rem;
        line-height: 1.6;
        color: var(--text-color);
    }

    /* Keep benefit-tag as inline on mobile - no positioning changes */
    .benefit-tag {
        display: inline-block;
        margin-bottom: 5px;
        font-size: 0.7rem;
    }

    /* Comparison Section - Full Width Background (Mobile) */
    .comparison-section {
        padding: 40px 0;
        margin: 0 -20px;
        /* Bleed to edges */
        border-radius: 0;
        background: var(--background-light);
    }

    .comparison-title {
        padding-left: 20px;
        padding-right: 20px;
        margin-bottom: 20px;
        /* Ensure space before table */
    }

    .why-cheaper {
        padding-left: 0;
        padding-right: 0;
    }

    .problems {
        padding: 25px 20px;
    }

    .cta-box {
        padding: 30px 20px;
    }

    .cta-box .btn {
        width: 100%;
        max-width: 300px;
        white-space: nowrap;
        font-size: 1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Flow Section Overlay */
    .flow-step {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        position: relative;
    }

    .step-image {
        grid-row: 1;
        position: relative;
    }

    .step-number {
        position: absolute;
        top: -10px;
        left: -10px;
        z-index: 5;
        width: 40px;
        height: 40px;
        font-size: 1rem;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    }

    .step-content {
        grid-row: 2;
    }

    /* Stack Area Section - BUTTONS TOP */
    .area-content-row {
        display: flex;
        flex-direction: column-reverse;
        /* List Top, Map Bottom */
        gap: 30px;
    }

    .area-map-container,
    .area-list-container {
        width: 100%;
    }

    .area-cities-compact {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    /* Compact Price Comparison Table (Fix Broken Layout) */
    .price-comparison-table-wrapper {
        overflow-x: auto;
        padding-right: 0;
        margin: 0;
        /* Reset negative margin to fix alignment */
        padding-left: 0;
        width: 100%;
        /* Fit screen exactly */
    }

    .price-comparison-table {
        min-width: auto;
        /* Remove fixed min-width to allow shrinking */
        width: 100%;
        table-layout: fixed;
        /* fix layout to respect widths */
    }

    .price-comparison-table th,
    .price-comparison-table td {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Specific column adjustments for mobile */
    .case-col {
        width: 35%;
    }

    .company-a {
        width: 22%;
    }

    /* Compacting these */
    .company-b {
        width: 22%;
    }

    .company-ours {
        width: 21%;
    }

    .price-comparison-table th,
    .price-comparison-table td {
        padding: 1px 0;
        /* Halved padding as requested */
        font-size: 10px;
        letter-spacing: -0.5px;
    }



    /* Detailed Price Tables Padding Reduction */
    .price-table th,
    .price-table td {
        padding: 6px 4px;
        /* Reduced to ~half of desktop */
        font-size: 0.8rem;
    }

    .case-col {
        min-width: 140px;
        /* Ensure description has space */
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Interleave order: Strong (1), Img (2), Span (3) */
    .case-col.case-with-image .case-text {
        display: contents;
        /* Unwrap strong and span */
    }

    .case-col.case-with-image strong {
        order: 1;
        margin-bottom: 5px;
    }

    .case-col.case-with-image img {
        order: 2;
        margin-bottom: 5px;
    }

    .case-col.case-with-image span {
        order: 3;
    }

    .case-text strong {
        white-space: normal;
        /* Allow wrapping */
        display: block;
        font-size: 0.75rem;
        /* Reduced from 0.85rem (~10% smaller) */
    }

    .price-comparison-table {
        min-width: auto;
        /* Try to fit container */
        width: 100%;
        table-layout: fixed;
        /* Force distribution */
    }

    .company-a,
    .company-b,
    .company-ours {
        min-width: 60px;
        /* Reduced min-width */
    }

    /* Price Navigation Buttons (Hidden on PC) */
    .price-nav {
        display: none;
        /* Default hidden on PC */
        gap: 10px;
        margin-bottom: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .price-nav-btn {
        padding: 8px 16px;
        background: #f0f0f0;
        border: none;
        border-radius: 20px;
        cursor: pointer;
        font-size: 0.9rem;
        transition: all 0.3s;
        white-space: nowrap;
        color: #333;
    }

    .price-nav-btn.active,
    .price-nav-btn:hover {
        background: var(--primary-color);
        color: #fff;
    }

    /* Price Details Table Padding Reduced */
    .price-table thead th,
    .price-table tbody td {
        padding: 10px 12px;
        /* Increased to match Other Services */
        font-size: 0.9rem;
    }

    /* Horizontal Slider for Price Tables */
    .price-tables-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-bottom: 20px;
        /* Space for scrollbar/dots */
        -webkit-overflow-scrolling: touch;
        margin: 0 -15px;
        /* Negative margin to span full width if needed */
        padding-left: 15px;
        /* Counteract negative margin */
        padding-right: 15px;
    }

    .price-table-card {
        min-width: 85%;
        /* SHow mostly one card */
        flex-shrink: 0;
        scroll-snap-align: center;
        margin-bottom: 0;
        /* Remove vertical margin */
        height: auto;
    }

    /* Solution Box Padding Reduction */
    .solution-box {
        padding: 25px 15px;
        /* Reduced from default */
    }

    /* Benefit Card Padding Reduction & Badge Fix */
    .benefit-card {
        padding: 15px;
    }

    .benefit-tag {
        position: relative;
        /* Changed from static to relative to ensure it flows nicely */
        display: inline-block;
        margin-bottom: 8px;
        /* Add spacing below badge */
        transform: none;
    }

    /* Why Cheaper Padding Removal */
    /* Why Cheaper - Full Bleed Background Redesign (User Request) */
    .why-cheaper {
        margin-left: -20px;
        /* Break out of container */
        margin-right: -20px;
        padding: 30px 20px;
        background-color: #f9f9f9;
        /* Subtle background */
        border-radius: 0;
        /* Remove any radius */
    }

    /* Remove item boxing if present, to look integrated */
    .why-item {
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 10px 0;
        /* Reduce padding since no box */
    }

    /* Problem Items Horizontal Layout */
    .problem-item {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 15px;
        padding: 15px;
    }

    .problem-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .feature-card {
        padding: 20px 15px;
    }

    /* Fix Price Badge Position on Mobile */
    .price-badge {
        top: 0;
        /* Lower the badge so it doesn't get cut off */
        right: 10px;
        z-index: 20;
        /* Ensure visibility */
    }

    /* Works CTA Padding Reduction */
    .works-cta {
        padding: 30px 15px;
    }

    /* Further CTA Box Padding Reduction & Font Fix */
    .cta-box,
    .contact-box {
        padding: 20px 15px;
    }

    /* Unify contact box button font sizes */
    .contact-box .btn {
        font-size: 1rem;
        padding: 15px 20px;
        min-height: 50px;
    }

    .contact-email {
        font-size: 0.95rem;
        /* Standardize font size */
        margin: 10px 0;
        word-break: break-all;
    }

    .contact-note {
        font-size: 0.85rem;
        /* Standardize font size */
        line-height: 1.6;
        text-align: left;
        /* Easier to read on mobile */
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Flow Section Overlay */
    .flow-step {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        position: relative;
    }

    .step-image {
        grid-row: 1;
        position: relative;
    }

    .step-number {
        position: absolute;
        top: -10px;
        left: -10px;
        z-index: 5;
        width: 40px;
        height: 40px;
        font-size: 1rem;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    }

    .step-content {
        grid-row: 2;
    }

    /* Stack Area Section - BUTTONS TOP */
    .area-content-row {
        display: flex;
        flex-direction: column-reverse;
        /* List Top, Map Bottom */
        gap: 30px;
    }

    .area-map-container,
    .area-list-container {
        width: 100%;
    }

    .area-cities-compact {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    /* Compact Price Comparison Table - CONSOLIDATED (Fix Overflow) */
    .price-comparison-table-wrapper {
        overflow-x: auto;
        /* Enable scroll if needed */
        -webkit-overflow-scrolling: touch;
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .price-comparison-table {
        min-width: 100%;
        width: 100%;
        table-layout: fixed;
        /* Force equal column distribution */
        border-collapse: collapse;
    }

    .price-comparison-table th,
    .price-comparison-table td {
        padding: 2px 1px;
        font-size: 10px;
        text-align: center;
        vertical-align: middle;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-all;
        /* Force break long words */
        overflow: hidden;
        /* Hide overflow */
    }

    /* Column widths via `th` for reliable control */
    .price-comparison-table th:nth-child(1) {
        width: 44% !important;
    }

    .price-comparison-table th:nth-child(2),
    .price-comparison-table th:nth-child(3) {
        width: 18% !important;
    }

    .price-comparison-table th:nth-child(4) {
        width: 20% !important;
    }

    /* Ensure colgroup doesn't interfere */
    .case-col,
    .company-a,
    .company-b,
    .company-ours {
        width: auto !important;
    }

    .case-text strong {
        white-space: normal;
        display: block;
        font-size: 10px;
    }

    /* Fix 5 Promises Consistency */
    .promise-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .promise-item {
        width: 100%;
        margin: 0;
        padding: 20px;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        text-align: center;
    }


    /* Hide images in comparison table on mobile */
    .case-col img {
        display: none;
    }

    /* Toggle PC/SP text in comparison table */
    .pc-text {
        display: none !important;
    }

    .sp-text {
        display: inline !important;
    }

    /* Price suffix smaller font on mobile */
    .price-suffix {
        font-size: 0.7em;
        /* 2/3 of parent font size */
    }

    /* Remove horizontal padding from th on mobile */
    .price-comparison-table th {
        padding-left: 0;
        padding-right: 0;
    }

    /* Reduce about-content (代表の声) font size on mobile */
    .about-content p {
        font-size: 0.85rem;
    }

    /* Solution Box Padding Reduction */
    .solution-box {
        padding: 25px 15px;
        /* Reduced from default */
    }

    /* Problem Items Horizontal Layout */
    .problem-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 15px;
        padding: 15px;
    }

    .problem-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .problem-icon svg {
        width: 32px;
        height: 32px;
    }

    /* Feature Card Padding Reduction */
    .feature-card {
        padding: 20px 15px;
    }

    /* Works CTA Padding Reduction */
    .works-cta {
        padding: 30px 15px;
    }

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

    .contact-phone {
        font-size: 1.6rem;
    }

    .company-info p {
        display: inline-block;
        word-break: keep-all;
        line-height: 1.6;
    }

    /* Works Showcase Mobile */
    .work-showcase-item {
        grid-template-columns: 1fr;
    }

    .work-showcase-images {
        flex-direction: column;
    }

    .work-showcase-images .work-before img,
    .work-showcase-images .work-after img {
        min-height: 180px;
    }

    .work-arrow {
        padding: 10px;
        transform: rotate(90deg);
    }

    .work-showcase-details {
        padding: 20px;
    }

    .work-showcase-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .work-showcase-meta {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .work-meta-item {
        text-align: left;
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
        border-bottom: 1px solid #eee;
    }

    .work-meta-item:last-child {
        border-bottom: none;
    }

    /* New Works Showcase Mobile */
    .work-showcase-item-new {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        border: 1px solid #eee;
    }

    .work-images-row {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .work-image-box {
        position: relative;
    }

    .work-label {
        z-index: 10;
        padding: 4px 10px;
        font-size: 0.8rem;
    }

    .work-image-box img {
        height: 240px;
    }

    .work-info-card {
        padding: 25px 20px;
    }

    .work-info-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .work-info-header h3 {
        font-size: 1.3rem;
    }

    .work-meta-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .work-meta-item-new {
        text-align: left;
        display: flex;
        justify-content: space-between;
        padding: 8px 5px;
        /* User request: added horizontal padding */
        border-bottom: 1px solid #eee;
    }

    .work-meta-item-new:last-child {
        border-bottom: none;
    }

    .work-customer-voice {
        padding: 15px;
        background: #fafafa;
    }

    /* Price Carousel (Horizontal Scroll) */
    .price-main-cards,
    .price-tables-grid,
    .price-other-grid {
        display: flex;
        grid-template-columns: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-bottom: 20px;
        margin-right: -20px;
        padding-right: 20px;
        /* Breathing room for scrolling */
    }

    .price-main-card,
    .price-table-card,
    .price-other-item {
        min-width: 85vw;
        scroll-snap-align: center;
        /* Ensure card doesn't clip content if possible, but keep rounded corners */
        flex-shrink: 0;
    }

    /* Price Main Cards Compact 3-Column (Fit in one screen) */
    .price-main-cards {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 4px;
        /* Reduced from 8px */
        overflow-x: hidden;
        overflow-y: visible;
        /* Allow badge to show above */
        padding: 0;
        padding-top: 20px;
        /* More space for badge */
        justify-content: space-between;
    }

    .price-main-card {
        flex: 1;
        width: 32%;
        min-width: 0;
        padding: 0;
        scroll-snap-align: none;
        border-radius: 12px;
        /* Slightly larger for better visibility */
        overflow: hidden;
        /* Clip header to match radius */
    }

    .price-main-card.featured {
        border-width: 2px;
        border-radius: 12px;
        /* Match card radius exactly */
    }

    .price-main-header {
        position: relative;
        padding: 10px;
        padding-top: 22px;
        /* Increased for badge space */
        overflow: visible;
        /* Allow badge to show */
    }

    .price-main-header h3 {
        font-size: 1rem;
        margin-bottom: 5px;
        white-space: nowrap;
    }

    /* Fix Badge Positioning - Above header */
    .price-badge {
        position: absolute;
        top: 1px;
        /* Raised higher to prevent text overlap */
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.55rem;
        padding: 2px 6px;
        z-index: 10;
    }

    .price-main-body {
        padding: 15px 10px;
        /* Halved from 30px 20px */
        text-align: center;
    }

    .price-main-body .price-big {
        font-size: 1.2rem;
        white-space: nowrap;
    }

    .price-main-body .price-from {
        font-size: 0.8rem;
        /* Increased from 0.6rem */
        white-space: nowrap;
    }

    .price-main-body .price-tax-inc {
        font-size: 0.7rem;
        /* Increased from 0.55rem */
    }

    .price-main-body .price-unit {
        font-size: 0.7rem;
        /* Increased from 0.55rem */
        white-space: nowrap;
    }

    /* Show feature list on mobile with global font size */
    .price-features {
        display: block;
        margin-top: 8px;
        padding: 0 5px;
    }

    .price-features li {
        font-size: 0.8rem;
        /* 10% smaller than global 0.9rem */
        padding: 4px 0;
        line-height: 1.4;
        text-align: left;
        border-bottom: none;
    }

    .price-features li::before {
        font-size: 0.4rem;
        left: 0;
    }

    /* Remove horizontal padding from table wrapper */
    .price-comparison-table-wrapper {
        padding-left: 0;
        padding-right: 0;
        width: 100%;
    }

    /* Other Services - Vertical List (User Request) */
    .price-other-grid {
        display: grid;
        grid-template-columns: 1fr;
        /* Stack vertically for list format */
        gap: 15px;
        overflow-x: visible;
        /* Disable scroll */
        scroll-snap-type: none;
        padding-bottom: 0;
    }

    .price-other-item {
        min-width: auto;
        /* Allow full width */
        width: 100%;
        scroll-snap-align: none;
        flex-shrink: 1;
    }

    /* Fix Price Table Clipping */
    .price-table-card .price-card-body {
        padding: 15px 10px;
        /* Reduce side padding of card body */
        overflow-x: auto;
        /* Allow table to scroll INSIDE card if needed */
    }

    .price-table {
        width: 100%;
        min-width: 100%;
        /* Allow it to take full space */
        table-layout: auto;
        /* Allow auto col widths */
    }

    /* Ensure table content wraps properly or is small enough */
    .price-table td {
        white-space: normal;
    }

    .price-table .price-amount {
        white-space: nowrap;
        /* Keep price on one line if possible, or let it wrap if really needed, but usually price should stay */
    }

    .price-notes {
        padding: 20px;
    }
}

/* Hero Section Enhancements */

/* Large Badges (Vertical) */


/* Showcase Images */
.hero-showcase-large {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
    width: 100%;
}

.hero-showcase-card.large {
    width: 280px;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-showcase-card.large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-showcase-card.large:hover img {
    transform: scale(1.05);
}

.hero-showcase-card.large .showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 70%, transparent 100%);
    padding: 10px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    /* Explicitly align items to left */
    text-align: left;
}

/* Toggle Button Text for Mobile/PC */
.btn-text-sp {
    display: none;
}

.btn-text-pc {
    display: inline;
}

@media (max-width: 768px) {
    .btn-text-sp {
        display: inline;
    }

    .btn-text-pc {
        display: none;
    }
}

.showcase-label {
    display: inline-block;
    background: #ffd700;
    color: #000;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
    align-self: flex-start;
    margin-bottom: 4px;
}

.showcase-service {
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
    margin: 0 0 2px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.showcase-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffd700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.showcase-price span {
    font-size: 0.8rem;
    font-weight: normal;
    color: #eee;
}

@media (max-width: 768px) {

    /* Other Services Table Style on Mobile */
    .price-other-grid {
        display: flex;
        /* Stack vertically like rows */
        flex-direction: column;
        gap: 0;
        /* Remove gap between rows */
        border: 1px solid #ddd;
        border-radius: 8px;
        overflow: hidden;
        background: #fff;
    }

    .price-other-item {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 12px 15px;
        border-bottom: 1px solid #eaeaea;
        box-shadow: none;
        border-radius: 0;
        margin: 0;
        background: transparent;
        text-align: left;
        width: 100%;
        border: none;
        /* Reset individual borders */
        border-bottom: 1px solid #eee;
        /* Divider */
    }

    .price-other-item:last-child {
        border-bottom: none;
    }

    .price-other-item:hover {
        transform: none;
        box-shadow: none;
    }

    .price-other-item h4 {
        font-size: 0.9rem;
        margin: 0;
        color: #333;
        font-weight: 500;
        flex: 1;
        /* Allow taking space */
    }

    .price-other-value {
        font-size: 1rem;
        color: var(--primary-color);
        font-weight: 700;
        margin: 0;
        white-space: nowrap;
    }

    .price-other-value span {
        font-size: 0.7rem;
        color: #666;
        font-weight: normal;
        margin-left: 2px;
    }

    /* Center About/Message/Promise Headers */
    .about-content h3,
    .promise-header h3,
    .promise-header p {
        text-align: center;
    }

    /* Compact Area Buttons (Mobile) */
    .area-cities-compact {
        display: grid;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
    }

    .area-city-btn {
        padding: 8px 4px !important;
        font-size: 0.8rem !important;
        height: auto !important;
        white-space: nowrap;
        background-color: var(--background-light);
        /* Ensure bg if missing */
        border: 1px solid #ddd;
        border-radius: 20px;
        color: var(--text-color);
    }

    .area-city-btn.active {
        background-color: var(--primary-color);
        color: #fff;
        border-color: var(--primary-color);
    }

    /* Fix Other Services Cut-off */
    .price-other-item {
        flex-wrap: wrap;
        /* Allow wrapping */
        height: auto !important;
    }

    .price-other-item h4 {
        flex: 1 1 60%;
        /* Allow shrinking/growing */
        min-width: 120px;
        white-space: normal;
        line-height: 1.3;
    }

    /* Price Nav Mobile Scroll (Show on Mobile) */
    .price-nav {
        display: flex;
        /* Override hidden on PC */
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 5px;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 15px;
    }

    .price-nav-btn {
        flex: 0 0 auto;
        font-size: 0.85rem;
        padding: 6px 14px;
    }
}


.price-other-value {
    flex: 0 0 auto;
    margin-left: 5px;
}

/* 5 Promises Uniformity Force */
.promise-item {
    background: #fff !important;
    border-radius: 8px !important;
    padding: 20px !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05) !important;
    width: 100% !important;
    margin: 0 !important;
}
}