/**
 * 美容皮膚科治療詳細ページ - 専用CSS
 * Treatment Detail Pages for Cosmetic Dermatology
 * main.cssと併用（重複回避）
 */

/* ===== TREATMENT HERO SECTION ===== */
.treatment-hero {
    background: var(--gradient-light);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.treatment-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(166, 157, 153, 0.05) 0%, transparent 50%);
}

.treatment-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.treatment-hero-content {
    text-align: left;
}

.treatment-hero-image {
    text-align: center;
}

.treatment-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    object-fit: cover;
}

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

.treatment-hero.center .treatment-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
}

.treatment-hero h1 {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.2;
}

.treatment-price-badge {
    background: var(--primary-color);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 400;
    margin: 30px 0;
    display: inline-block;
    box-shadow: var(--shadow-medium);
    letter-spacing: 0.05em;
}

.treatment-price-initial {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 5px;
}

.treatment-tags {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.treatment-hero-content .treatment-tags {
    justify-content: flex-start;
}

.treatment-tag {
    background: var(--white);
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.05em;
    border: 1px solid rgba(166, 157, 153, 0.2);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.treatment-tag:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* ===== IMAGE GALLERY SECTION ===== */
.image-gallery {
    background: var(--white);
    padding: 80px 0;
}

.gallery-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 36px);
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.gallery-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(166, 157, 153, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-caption {
    padding: 20px;
    text-align: center;
    color: var(--text-medium);
    font-weight: 300;
    font-size: 14px;
}

/* ===== BEFORE AFTER SECTION ===== */
.before-after {
    background: var(--accent-color);
    padding: 80px 0;
}

.before-after-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 36px);
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 50px;
}

.before-after-container {
    max-width: 1000px;
    margin: 0 auto;
}

.before-after-item {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(166, 157, 153, 0.1);
}

.before-after-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.before-after-image {
    text-align: center;
}

.before-after-image img {
    width: 100%;
    max-width: 350px;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
}

.before-after-label {
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 400;
    margin-top: 15px;
    display: inline-block;
}

.before-label {
    background: #e74c3c;
}

.after-label {
    background: #27ae60;
}

.before-after-description {
    text-align: center;
    color: var(--text-medium);
    font-weight: 300;
    line-height: 1.7;
}

.before-after-note {
    background: rgba(166, 157, 153, 0.1);
    padding: 20px;
    border-radius: 12px;
    margin-top: 30px;
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== TREATMENT IMAGES SECTION ===== */
.treatment-images {
    background: var(--white);
    padding: 80px 0;
}

.treatment-image-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.treatment-image-showcase:nth-child(even) {
    direction: rtl;
}

.treatment-image-showcase:nth-child(even)>* {
    direction: ltr;
}

.treatment-showcase-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
    object-fit: cover;
}

.treatment-showcase-content h3 {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
}

.treatment-showcase-content p {
    color: var(--text-medium);
    line-height: 1.8;
    font-weight: 300;
}

/* ===== RECOMMENDATION SECTION ===== */
.recommendation {
    background: var(--white);
    padding: 80px 0;
}

.recommendation-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 36px);
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 50px;
}

.recommendation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.recommendation-item {
    background: var(--accent-color);
    padding: 25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(166, 157, 153, 0.1);
    transition: all 0.3s ease;
}

.recommendation-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-light);
}

.recommendation-item::before {
    content: "✓";
    background: var(--primary-color);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

.recommendation-text {
    color: var(--text-dark);
    font-weight: 300;
    line-height: 1.6;
}

/* ===== VIDEO SECTION ===== */
.video-section {
    background: var(--accent-color);
    padding: 80px 0;
    text-align: center;
}

.video-title {
    font-size: clamp(24px, 3vw, 32px);
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 20px;
}

.video-subtitle {
    color: var(--text-medium);
    font-weight: 300;
    margin-bottom: 40px;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(166, 157, 153, 0.1);
    overflow: hidden;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

.video-placeholder {
    color: var(--text-medium);
    font-size: 18px;
    font-weight: 300;
}

/* ===== ABOUT SECTION ===== */
.treatment-about {
    background: var(--white);
    padding: 80px 0;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content.center {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 800px;
}

.about-text h2 {
    font-size: clamp(28px, 4vw, 36px);
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 30px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    font-weight: 300;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
    object-fit: cover;
}

/* ===== FEATURES SECTION ===== */
.features {
    background: var(--accent-color);
    padding: 80px 0;
}

.features-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 36px);
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 50px;
}

.features-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    font-weight: 300;
}

.feature-item {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(166, 157, 153, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature-item h3 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item h3::before {
    content: "★";
    color: var(--primary-color);
    font-size: 20px;
}

.feature-item p {
    color: var(--text-medium);
    line-height: 1.8;
    font-weight: 300;
    margin: 0;
}

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

.feature-special h3 {
    color: white;
}

.feature-special p {
    color: rgba(255, 255, 255, 0.9);
}

/* ===== FLOW SECTION ===== */
.flow {
    background: var(--white);
    padding: 80px 0;
}

.flow-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 36px);
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 50px;
}

.flow-steps {
    max-width: 800px;
    margin: 0 auto;
}

.flow-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

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

.flow-number {
    background: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 400;
    flex-shrink: 0;
    box-shadow: var(--shadow-light);
}

.flow-content h3 {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 15px;
}

.flow-content p {
    color: var(--text-medium);
    line-height: 1.7;
    font-weight: 300;
    margin: 0;
}

/* ===== PRICE SECTION ===== */
.treatment-price {
    background: var(--accent-color);
    padding: 80px 0;
}

.price-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 36px);
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 50px;
}

.price-table {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(166, 157, 153, 0.1);
}

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

.price-header h3 {
    color: white;
    font-size: 24px;
    font-weight: 400;
    margin: 0 0 10px 0;
}

.price-note {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid var(--accent-color);
    transition: all 0.3s ease;
}

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

.price-row:hover {
    background: rgba(166, 157, 153, 0.03);
}

.price-service {
    font-weight: 400;
    color: var(--text-dark);
    flex: 1;
}

.price-amount {
    font-weight: 400;
    color: var(--primary-color);
    font-size: 18px;
}

.price-initial {
    color: #e74c3c;
    font-weight: 500;
}

/* ===== FAQ SECTION ===== */
.faq {
    background: var(--white);
    padding: 80px 0;
}

.faq-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 36px);
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 50px;
}

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

.faq-item {
    background: var(--white);
    border: 1px solid rgba(166, 157, 153, 0.1);
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.faq-question {
    background: var(--accent-color);
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(166, 157, 153, 0.1);
}

.faq-q {
    background: var(--primary-color);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    margin-right: 15px;
    flex-shrink: 0;
}

.faq-question-text {
    flex: 1;
    color: var(--text-dark);
    font-weight: 400;
    line-height: 1.6;
}

.faq-toggle {
    color: var(--primary-color);
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 500px;
}

.faq-a {
    background: #27ae60;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    margin-right: 15px;
    flex-shrink: 0;
}

.faq-answer-content {
    display: flex;
    align-items: flex-start;
}

.faq-answer-text {
    color: var(--text-medium);
    line-height: 1.7;
    font-weight: 300;
}

/* ===== CTA SECTION ===== */
.treatment-cta {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.treatment-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.treatment-cta-container {
    position: relative;
    z-index: 2;
}

.treatment-cta h2 {
    color: white;
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 400;
    margin-bottom: 20px;
}

.treatment-cta p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-button {
    background: white;
    color: var(--primary-color);
    padding: 18px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    color: var(--primary-color);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .treatment-hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .treatment-image-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .before-after-images {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .recommendation-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .flow-step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .flow-number {
        margin: 0 auto;
    }
}

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

    .treatment-hero-container {
        padding: 0 20px;
    }

    .treatment-tags {
        gap: 10px;
    }

    .treatment-tag {
        padding: 8px 16px;
        font-size: 12px;
    }

    .recommendation-item {
        padding: 20px;
        gap: 12px;
    }

    .feature-item {
        padding: 25px 20px;
    }

    .price-row {
        padding: 20px;
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .faq-question,
    .faq-item.active .faq-answer {
        padding: 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .before-after-item {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .treatment-price-badge {
        padding: 15px 30px;
        font-size: 18px;
    }

    .feature-item h3 {
        font-size: 18px;
    }

    .flow-number {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }

    .before-after-image img {
        height: 200px;
    }

    .gallery-item img {
        height: 200px;
    }
}

/* ===== IMAGE LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    margin: 2% auto;
    width: 90%;
    max-width: 800px;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: opacity 0.3s ease;
}

.lightbox-close:hover {
    opacity: 0.7;
}

/* ===== RECOMMENDATION SECTION ===== */
.recommendation {
    background: var(--white);
    padding: 80px 0;
}

.recommendation-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 36px);
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 50px;
}

.recommendation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.recommendation-item {
    background: var(--accent-color);
    padding: 25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(166, 157, 153, 0.1);
    transition: all 0.3s ease;
}

.recommendation-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-light);
}

.recommendation-item::before {
    content: "✓";
    background: var(--primary-color);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

.recommendation-text {
    color: var(--text-dark);
    font-weight: 300;
    line-height: 1.6;
}

/* ===== VIDEO SECTION ===== */
.video-section {
    background: var(--accent-color);
    padding: 80px 0;
    text-align: center;
}

.video-title {
    font-size: clamp(24px, 3vw, 32px);
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 20px;
}

.video-subtitle {
    color: var(--text-medium);
    font-weight: 300;
    margin-bottom: 40px;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(166, 157, 153, 0.1);
}

.video-placeholder {
    color: var(--text-medium);
    font-size: 18px;
    font-weight: 300;
}

/* ===== ABOUT SECTION ===== */
.treatment-about {
    background: var(--white);
    padding: 80px 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: clamp(28px, 4vw, 36px);
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 30px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    font-weight: 300;
}

/* ===== FEATURES SECTION ===== */
.features {
    background: var(--accent-color);
    padding: 80px 0;
}

.features-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 36px);
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 50px;
}

.features-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    font-weight: 300;
}

.feature-item {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(166, 157, 153, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature-item h3 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item h3::before {
    content: "★";
    color: var(--primary-color);
    font-size: 20px;
}

.feature-item p {
    color: var(--text-medium);
    line-height: 1.8;
    font-weight: 300;
    margin: 0;
}

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

.feature-special h3 {
    color: white;
}

.feature-special p {
    color: rgba(255, 255, 255, 0.9);
}

/* ===== FLOW SECTION ===== */
.flow {
    background: var(--white);
    padding: 80px 0;
}

.flow-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 36px);
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 50px;
}

.flow-steps {
    max-width: 800px;
    margin: 0 auto;
}

.flow-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

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

.flow-number {
    background: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 400;
    flex-shrink: 0;
    box-shadow: var(--shadow-light);
}

.flow-content h3 {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 15px;
}

.flow-content p {
    color: var(--text-medium);
    line-height: 1.7;
    font-weight: 300;
    margin: 0;
}

/* ===== PRICE SECTION ===== */
.treatment-price {
    background: var(--accent-color);
    padding: 80px 0;
}

.price-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 36px);
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 50px;
}

.price-table {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(166, 157, 153, 0.1);
}

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

.price-header h3 {
    color: white;
    font-size: 24px;
    font-weight: 400;
    margin: 0 0 10px 0;
}

.price-note {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid var(--accent-color);
    transition: all 0.3s ease;
}

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

.price-row:hover {
    background: rgba(166, 157, 153, 0.03);
}

.price-service {
    font-weight: 400;
    color: var(--text-dark);
    flex: 1;
}

.price-amount {
    font-weight: 400;
    color: var(--primary-color);
    font-size: 18px;
}

.price-initial {
    color: #e74c3c;
    font-weight: 500;
}

/* ===== FAQ SECTION ===== */
.faq {
    background: var(--white);
    padding: 80px 0;
}

.faq-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 36px);
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 50px;
}

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

.faq-item {
    background: var(--white);
    border: 1px solid rgba(166, 157, 153, 0.1);
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.faq-question {
    background: var(--accent-color);
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(166, 157, 153, 0.1);
}

.faq-q {
    background: var(--primary-color);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    margin-right: 15px;
    flex-shrink: 0;
}

.faq-question-text {
    flex: 1;
    color: var(--text-dark);
    font-weight: 400;
    line-height: 1.6;
}

.faq-toggle {
    color: var(--primary-color);
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 500px;
}

.faq-a {
    background: #27ae60;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    margin-right: 15px;
    flex-shrink: 0;
}

.faq-answer-content {
    display: flex;
    align-items: flex-start;
}

.faq-answer-text {
    color: var(--text-medium);
    line-height: 1.7;
    font-weight: 300;
}

/* ===== CTA SECTION ===== */
.treatment-cta {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.treatment-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.treatment-cta-container {
    position: relative;
    z-index: 2;
}

.treatment-cta h2 {
    color: white;
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 400;
    margin-bottom: 20px;
}

.treatment-cta p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-button {
    background: white;
    color: var(--primary-color);
    padding: 18px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    color: var(--primary-color);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .recommendation-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .flow-step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .flow-number {
        margin: 0 auto;
    }
}

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

    .treatment-hero-container {
        padding: 0 20px;
    }

    .treatment-tags {
        gap: 10px;
    }

    .treatment-tag {
        padding: 8px 16px;
        font-size: 12px;
    }

    .recommendation-item {
        padding: 20px;
        gap: 12px;
    }

    .feature-item {
        padding: 25px 20px;
    }

    .price-row {
        padding: 20px;
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .faq-question,
    .faq-item.active .faq-answer {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .treatment-price-badge {
        padding: 15px 30px;
        font-size: 18px;
    }

    .feature-item h3 {
        font-size: 18px;
    }

    .flow-number {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
}