/* General Styles */
:root {
    --primary-color: #007BFF;
    --secondary-color: #6c757d;
    --background-color: #FFFFFF;
    --text-color: #333333;
    --heading-color: #003366;
    --accent-color: #2AD1D1;
    --light-bg-color: #f8f9fa;
}

body {
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

h1, h2, h3, h4 {
    color: var(--heading-color);
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 2rem;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

section {
    padding: 4rem 0;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.2),
        0 0 0 3px rgba(255, 255, 255, 0.65),
        0 0 26px rgba(42, 209, 209, 0.45);
}

.cta-button:hover {
    background-color: #3aa3a3;
    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.22),
        0 0 0 3px rgba(255, 255, 255, 0.75),
        0 0 34px rgba(42, 209, 209, 0.55);
    transform: translateY(-1px);
}

.cta-button:focus-visible,
.header-cta:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.9);
    outline-offset: 3px;
}

.hero-trial-info,
.cta-trial-info {
    margin-top: 0.4rem;
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--text-color);
    text-align: center;
}

.header-cta-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.header .cta-trial-info {
    font-size: 11px;
    color: #fff;
    text-align: right;
}

.section-lead {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
}

.sp-only {
    display: none;
}

/* Header */
.header {
    background-color: #000000;
    padding: 0.5rem 0;
}

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

.header-cta {
    background-color: var(--accent-color);
    color: #000;
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    transition: background-color 0.3s ease;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.35),
        0 0 0 2px rgba(255, 255, 255, 0.55);
}

.header-cta:hover {
    background-color: #3aa3a3;
    box-shadow:
        0 6px 14px rgba(0, 0, 0, 0.38),
        0 0 0 2px rgba(255, 255, 255, 0.65);
    transform: translateY(-1px);
}

.logo {
    height: 30px;
}

/* Background Image Lazy Load Base */
.lazy-bg {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.lazy-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.lazy-bg .container {
    position: relative;
    z-index: 2;
}

/* Hero Section */
#hero {
    color: #333;
    text-align: center;
    padding: 4rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e8f4f8;
}

#hero::before {
    background-color: rgba(75, 44, 32, 0.2);
}

.hero-text-box {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem 8rem;
    border-radius: 10px;
    max-width: 950px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}

#hero h1 {
    color: #000;
    margin-bottom: 0.5rem;
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.4;
}

#hero .sub-headline {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

#hero .hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 0.8rem;
    justify-content: center;
    margin: 0.8rem auto 0.2rem;
    max-width: 900px;
}

#hero .hero-trust-item {
    font-size: 0.8rem;
    line-height: 1.2;
    color: var(--text-color);
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    white-space: nowrap;
}

#hero .cta-button {
    font-size: 1.7rem;
    padding: 1rem 2rem;
    margin-bottom: 0;
}

.hero-cta-group {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    align-items: stretch;
    margin-top: 1.5rem;
    margin-bottom: 0.2rem;
}

.hero-cta-group .cta-button {
    font-size: 1.4rem;
    padding: 1.1rem 3.5rem;
}

/* ToDo Map Section */
#todo-map {
    background-color: #fff;
    padding: 4rem 0;
}

.todo-map-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.todo-category {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    border: 2px solid #e0e0e0;
    transition: transform 0.2s ease;
}

.todo-category.highlight {
    border-color: var(--accent-color);
    background-color: #e8fafa;
    transform: scale(1.03);
    box-shadow: 0 4px 20px rgba(42, 209, 209, 0.2);
}

.todo-category-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.todo-icon {
    font-size: 1.5rem;
}

.todo-category h3 {
    margin: 0;
    font-size: 1.1rem;
}

.todo-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.todo-category ul li {
    padding: 0.4rem 0;
    padding-left: 1.2rem;
    position: relative;
    font-size: 0.95rem;
    color: #555;
}

.todo-category ul li::before {
    content: '☐';
    position: absolute;
    left: 0;
    color: #aaa;
}

.todo-category.highlight ul li::before {
    color: var(--accent-color);
}

.todo-highlight-note {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: bold;
    text-align: center;
}

/* BGM Importance Section */
#bgm-importance {
    background-color: #fff;
    padding: 4rem 0;
}

.importance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.importance-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.importance-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.importance-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.importance-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

/* Copyright Concern Section */
#copyright-concern {
    background-color: var(--light-bg-color);
    padding: 4rem 0;
}

.concern-grid {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.concern-item {
    background-color: var(--light-bg-color);
    border-radius: 12px;
    overflow: hidden;
}

.concern-question {
    display: flex;
    align-items: center;
    padding: 1.2rem 1.5rem;
    gap: 1rem;
    background-color: #ffeaea;
}

.concern-q-mark {
    font-size: 1.4rem;
    font-weight: bold;
    color: #e05050;
    flex-shrink: 0;
    width: 2rem;
    text-align: center;
}

.concern-question p {
    margin: 0;
    font-weight: 500;
    font-size: 1.05rem;
}

.concern-answer {
    display: flex;
    align-items: flex-start;
    padding: 1.2rem 1.5rem;
    gap: 1rem;
    background-color: #e8fafa;
}

.concern-a-mark {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--accent-color);
    flex-shrink: 0;
    width: 2rem;
    text-align: center;
}

.concern-answer p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
}

/* Copyright Info (reused from clinic-relaxation) */
.copyright-info-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.copyright-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 350px;
}

.copyright-info-box {
    border: 2px solid #000;
    padding: 2rem;
    text-align: center;
    width: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 200px;
    box-sizing: border-box;
}

.copyright-icon {
    font-size: 5rem;
    line-height: 1;
    font-weight: bold;
}

.copyright-info-box p {
    margin: 0;
    font-weight: bold;
    line-height: 1.5;
    font-size: 1.2rem;
}

.copyright-desc {
    margin-top: 1rem;
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
    line-height: 1.6;
}

/* Solution Section */
#solution {
    background-color: var(--light-bg-color);
    padding: 4rem 0;
}

#solution .container {
    max-width: 1280px;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 3rem auto 0;
}

.solution-card {
    background-color: #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: none;
}

.solution-header {
    background-color: #bcece0;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    margin-bottom: 1.5rem;
}

.solution-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #bcece0;
    z-index: 1;
}

.solution-header h3 {
    font-size: 1.8rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.solution-icon {
    font-size: 2.5rem;
    margin-right: 1rem;
}

.solution-body {
    padding: 0 2rem 2rem;
    font-weight: bold;
    line-height: 1.8;
    font-size: 1.2rem;
    text-align: left;
}

/* Playlist Section */
#playlist {
    background-color: #fff;
    padding: 4rem 0;
}

#playlist h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.playlist-lead {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
}

.playlist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.playlist-item img {
    border-radius: 12px;
}

.playlist-genre {
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--heading-color);
    margin: 0 0 0.5rem;
}

.playlist-item h4 {
    margin-bottom: 0.2rem;
}

.music-description {
    margin-top: 0.2rem;
}

.reasons-cta-container {
    text-align: center;
    margin: 2.5rem 0;
}

.reasons-cta-container .cta-button {
    font-size: 1.7rem;
    padding: 1rem 7rem;
}

/* Pricing Section */
#pricing {
    background-color: var(--light-bg-color);
    padding: 4rem 0;
}

.pricing-container {
    margin-top: 2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: flex-end;
}

.pricing-card-wrapper {
    position: relative;
}

.plan-badge-top {
    background-color: var(--accent-color);
    color: white;
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
    border-radius: 5px;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    font-weight: bold;
}

.plan-badge-top::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--accent-color);
}

.pricing-card {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-header {
    padding: 1.5rem;
    background-color: #d4f0f0;
}

.pricing-body {
    padding: 1.5rem;
}

.pricing-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
    z-index: 10;
}

.pricing-card.featured .pricing-header {
    background-color: var(--accent-color);
    color: white;
}
.pricing-card.featured .plan-name {
    color: white;
}
.pricing-card.featured .plan-badge-1 {
    color: white;
}

.plan-badge-1 {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--heading-color);
    margin-bottom: 0.5rem;
}
.featured .plan-name {
    margin-bottom: 1rem;
}

.plan-badge-2 {
    background-color: white;
    color: var(--accent-color);
    font-size: 0.9rem;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    display: inline-block;
    margin-bottom: 0;
}

.price-info {
    margin-bottom: 1rem;
}

.price-label {
    font-size: 1rem;
    color: var(--text-color);
    display: block;
}

.price-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--heading-color);
    line-height: 1.2;
}

.price-unit {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--heading-color);
}

.initial-fee {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.5rem;
}
.initial-fee .fee-label {
    font-size: 1rem;
}
.initial-fee .fee-value {
    font-size: 1.2rem;
    font-weight: bold;
}

.pricing-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-top: 1.5rem;
}

.reasons-subtitle {
    font-size: 2.1rem;
    text-align: center;
    color: #4db8b8;
    margin-bottom: 1rem;
}

/* Devices */
.devices-img-large {
    max-width: 800px;
    margin: 2rem auto 3rem;
    display: block;
}

.steps-horizontal {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.step-horizontal {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    width: 250px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
}

.step-number-box {
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: white;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-horizontal h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.step-arrow {
    width: 10px;
    height: 10px;
    border-top: 2px solid #ccc;
    border-right: 2px solid #ccc;
    transform: rotate(45deg);
    align-self: center;
}

/* Arrow Separator */
.section-separator-arrow {
    text-align: center;
    padding: 2rem 0;
    background-color: #fff;
}

/* Final CTA */
#final-cta {
    padding: 4rem 0;
    background-color: white;
}

.final-cta-box {
    background-color: var(--light-bg-color);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.07);
    text-align: center;
}

.final-cta-box .cta-button {
    font-size: 1.7rem;
    padding: 1rem 7rem;
}

#final-cta h2 {
    margin-bottom: 1rem;
}

#final-cta p {
    margin-bottom: 2rem;
    font-size: 1.6rem;
}

/* FAQ Section */
#faq {
    background-color: var(--light-bg-color);
    padding: 4rem 0;
}

#faq h2 {
    margin-bottom: 2rem;
}

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

.faq-item {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.faq-question {
    padding: 1.2rem 1.5rem;
    font-weight: 500;
    font-size: 1.05rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--accent-color);
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform 0.2s ease;
}

.faq-item[open] .faq-question {
    padding-bottom: 0.5rem;
}

.faq-item[open] .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 0 1.5rem 1.2rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

.faq-answer a {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background-color: #4db8b8;
    color: white;
    text-align: center;
    padding: 6.5rem 0;
}

.site-footer p {
    margin: 0;
    font-size: 1.1rem;
}

.jasrac-license {
    font-size: 0.75rem;
    margin-top: 0.5rem;
    opacity: 0.8;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-links li a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links li a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    h2 {
        font-size: 1.5rem;
    }
    section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 0.5rem;
    }

    .sp-only {
        display: inline;
    }

    /* Header */
    .header .container {
        padding: 0 1rem;
        flex-direction: row;
        justify-content: space-between;
    }
    .header-cta {
        padding: 0.5rem 1rem;
        font-size: 12px;
    }
    .logo {
        height: 25px;
    }

    /* Hero */
    .hero-text-box {
        padding: 2rem 1.5rem;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }
    #hero h1 {
        font-size: 2rem;
        line-height: 1.3;
        font-weight: 400;
    }
    #hero .sub-headline {
        font-size: 1.1rem;
    }
    #hero .cta-button {
        width: 100%;
        padding: 1rem 0;
        font-size: 1.2rem;
        box-sizing: border-box;
    }
    .hero-cta-group {
        flex-direction: column;
        gap: 0.6rem;
    }
    .hero-cta-group .cta-button {
        width: 100%;
        padding: 1rem 0;
        font-size: 1.1rem;
        box-sizing: border-box;
    }

    /* ToDo Map */
    .todo-map-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .todo-category.highlight {
        transform: none;
    }

    /* Importance */
    .importance-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Copyright Concern */
    .concern-question p,
    .concern-answer p {
        font-size: 0.95rem;
    }

    /* Copyright Info */
    .copyright-info-grid {
        gap: 4rem;
    }
    .copyright-item {
        width: 100%;
        max-width: 350px;
    }
    .copyright-info-box {
        width: 100%;
    }

    /* Solution */
    .solution-grid {
        grid-template-columns: 1fr;
        margin-top: 2rem;
    }

    /* Playlist */
    #playlist h2 {
        font-size: 1.5rem;
    }
    .playlist-lead {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    .playlist-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .pricing-card.featured {
        transform: scale(1);
    }
    .reasons-subtitle {
        font-size: 1.4rem;
    }

    /* Devices Image */
    .devices-img-large {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 1rem auto 2rem;
    }

    /* Steps */
    .steps-horizontal {
        flex-direction: column;
        align-items: center;
    }
    .step-horizontal {
        width: 100%;
        max-width: 350px;
    }
    .step-arrow {
        transform: rotate(135deg);
        margin: 1rem 0;
    }

    /* CTA Buttons */
    .reasons-cta-container .cta-button,
    .final-cta-box .cta-button {
        width: 100%;
        padding: 1rem 0;
        font-size: 1.3rem;
        box-sizing: border-box;
    }

    .final-cta-box {
        padding: 2rem 1.5rem;
    }

    #final-cta p {
        font-size: 1.2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .site-footer {
        padding: 3rem 0;
    }

    .section-lead {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    .social-proof-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.6rem 0.5rem !important;
    }
}

/* ========== Fix: Social Proof Section ========== */
#social-proof {
    background-color: var(--light-bg-color);
}

.social-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 2rem auto;
}

.social-proof-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.social-proof-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.social-proof-label {
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.social-proof-pct {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--heading-color);
}

.social-proof-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-top: 1rem;
}

/* ========== Fix: Comparison Table ========== */
.comparison-table-wrap {
    margin-top: 3rem;
}

.comparison-table-title {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    max-width: 800px;
    font-size: 0.95rem;
}

.comparison-table th,
.comparison-table td {
    padding: 0.8rem 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table thead th {
    background-color: var(--heading-color);
    color: white;
    font-weight: 500;
}

.comparison-table thead th.highlight-col {
    background-color: var(--accent-color);
}

.comparison-table td.highlight-col {
    background-color: rgba(42, 209, 209, 0.06);
}

.comparison-table tbody tr:hover {
    background-color: rgba(0,0,0,0.02);
}

/* ========== Fix: Corporate Inquiry + Operator Info ========== */
#corporate-inquiry {
    padding: 3rem 0;
    background-color: var(--light-bg-color);
}

.corporate-inquiry-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.corporate-inquiry-box h3 {
    margin-top: 0;
    font-size: 1.2rem;
}

.corporate-inquiry-box p {
    font-size: 0.95rem;
    color: var(--text-color);
}

.corporate-email {
    margin-top: 1rem;
}

.corporate-email a {
    color: var(--accent-color);
    font-weight: 500;
    font-size: 1.1rem;
    text-decoration: none;
}

.corporate-email a:hover {
    text-decoration: underline;
}

.operator-info {
    text-align: center;
    font-size: 0.85rem;
    color: var(--secondary-color);
}
