: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;
}

.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);
}

.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);
}

/* 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: 900px;
    margin: 0 auto;
    padding: 20px;
}

.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);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    animation: bounce 2s ease-in-out infinite;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 15px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

@keyframes bounce {

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

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

@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-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: 2.8rem;
    font-weight: 700;
    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;
}

/* Fix Badge Overflow */
.price-main-card {
    overflow: visible;
}

.price-main-header {
    overflow: visible;
    position: relative;
}

.price-badge {
    position: absolute;
    top: -12px;
    right: 15px;
    z-index: 2;
}

/* 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 {
    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;
}

.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;
}

/* 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.4rem;
    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: 18px 20px;
    text-align: center;
}

.price-table-header h3 {
    font-size: 1.15rem;
    margin: 0;
}

.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: 12px 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: 14px 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: 18px 20px;
    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;
    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: 1rem;
}

.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: 30px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    margin-top: 30px;
}

.why-cheaper h4 {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    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: 50px;
}

.benefits-title {
    text-align: center;
    font-size: 1.4rem;
    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);
}

.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 200px 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: 130px;
    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 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);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

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

    .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-title {
        font-size: 2.5rem;
    }

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

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

    .hero-badges {
        gap: 10px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-btn-phone,
    .hero-btn-main {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 15px 25px;
    }

    .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;
    }

    .hero-scroll-indicator {
        display: none;
    }

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

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

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

    .about-image {
        max-width: 250px;
        margin: 0 auto;
    }

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

    .flow-step {
        grid-template-columns: 50px 1fr;
        gap: 15px;
    }

    .step-image {
        grid-column: 2;
        grid-row: 1;
    }

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

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

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

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

    /* 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-images-row {
        grid-template-columns: 1fr;
        gap: 2px;
    }

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

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

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

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

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

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

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

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

    /* Price Tables Mobile */
    .price-tables-grid {
        grid-template-columns: 1fr;
    }

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

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