/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Professional corporate color palette */
    --primary-color: #006b8f; /* Deep teal */
    --primary-dark: #004d6b;
    --secondary-color: #6ebec8; /* Light teal/cyan */
    --accent-color: #ff9800; /* Orange accent */
    --accent-orange: #ff9800;
    --success-green: #10b981;
    --dark-color: #1a1a1a;
    --text-color: #333333;
    --gray-dark: #404040;
    --gray-medium: #737373;
    --gray-light: #f0f4f8;
    --border-color: #e0e7ed;
    --separator-color: #e0e7ed;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0, 107, 143, 0.08);
    --shadow-md: 0 4px 6px rgba(0, 107, 143, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 107, 143, 0.12);
    --shadow-xl: 0 15px 30px rgba(0, 107, 143, 0.15);
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 50px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    line-height: 1.75;
    letter-spacing: 0;
    color: var(--text-color);
    background-color: var(--white);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p {
    margin-bottom: 1.25em;
    line-height: 1.8;
}

strong {
    font-weight: 600;
    color: var(--dark-color);
}

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

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 16px 0;
    box-shadow: var(--shadow-sm);
}

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

.site-header .logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 20px 0;
}

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

.logo h1 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.02em;
}

.nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav a:hover {
    color: var(--white);
}

.btn-nav {
    background: var(--dark-color);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
}

.btn-nav:hover {
    background: var(--secondary-color);
}

/* Hero Section */
.hero {
    margin-top: 0;
    padding: 160px 0 80px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.decoration-circle {
    position: absolute;
    opacity: 0.4;
}

.decoration-1 {
    top: 10%;
    right: 5%;
    animation: float 6s ease-in-out infinite;
}

.decoration-2 {
    bottom: 15%;
    left: 8%;
    animation: float 8s ease-in-out infinite 1s;
}

.decoration-3 {
    top: 40%;
    left: 10%;
    animation: float 7s ease-in-out infinite 2s;
}

.decoration-4 {
    bottom: 30%;
    right: 12%;
    animation: float 9s ease-in-out infinite 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes badgeEntrance {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 107, 143, 0.3);
    }
}

.hero-wrapper {
    position: relative;
    z-index: 1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--gray-light);
    color: var(--gray-dark);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 32px;
    border: 1px solid var(--border-color);
}

.hero-badge-highlight {
    background: var(--dark-color);
    color: var(--white);
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    border: none;
    letter-spacing: 0;
    border-radius: var(--radius-full);
    animation: badgeEntrance 0.8s ease-out, badgePulse 2s ease-in-out 1s infinite;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.4;
    color: var(--dark-color);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 19px;
    font-weight: 500;
    color: var(--gray-dark);
    margin-bottom: 10px;
    letter-spacing: 0;
}

.hero-subtitle-sub {
    font-size: 17px;
    font-weight: 400;
    color: var(--gray-medium);
    margin-bottom: 32px;
    letter-spacing: 0;
}

.hero-illustration {
    max-width: 500px;
    margin: 40px auto 20px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-illustration img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-illustration-secondary {
    max-width: 500px;
    margin: 20px auto 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-illustration-secondary img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-image-wrapper {
    max-width: 600px;
    margin: 40px auto 30px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.02);
}

.hero-description {
    font-size: 16px;
    color: var(--gray-medium);
    margin-bottom: 48px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 16px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.15s ease;
    cursor: pointer;
    border: 1px solid transparent;
    box-shadow: none;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--gray-dark);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--gray-dark);
}

.btn-outline {
    background-color: transparent;
    color: var(--gray-dark);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--gray-dark);
}

.btn-large {
    padding: 14px 32px;
    font-size: 16px;
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-color);
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: var(--gray-medium);
    margin-bottom: 64px;
    font-weight: 400;
    line-height: 1.75;
}

/* Section Images */
.section-image {
    max-width: 700px;
    margin: 0 auto 50px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.section-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

/* Wave Divider */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-divider .shape-fill {
    fill: var(--white);
}

/* Decorative Elements */
.floating-decoration {
    position: absolute;
    pointer-events: none;
    opacity: 0.15;
    z-index: 0;
}

.floating-decoration-1 {
    top: 10%;
    right: 5%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.floating-decoration-2 {
    bottom: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite 2s;
}

.floating-decoration-3 {
    top: 50%;
    right: 15%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite 4s;
}

/* Merits Section */
.merits {
    background-color: var(--gray-light);
}

.merits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.merit-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    border: none;
    box-shadow: none;
    transition: transform 0.2s ease;
}

.merit-card:hover {
}

.merit-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.merit-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
    color: var(--dark-color);
    letter-spacing: -0.01em;
}

.merit-description {
    font-size: 15px;
    color: var(--gray-medium);
    line-height: 1.7;
}

/* Programs Section */
.programs {
    background-color: var(--white);
}

.program-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 24px;
}

.program-type {
    background-color: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.program-type:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.program-icon {
    font-size: 32px;
    margin-bottom: 20px;
}

.program-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark-color);
    letter-spacing: -0.01em;
}

.program-duration {
    display: inline-block;
    background: var(--gray-light);
    color: var(--gray-dark);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
}

.program-description {
    font-size: 15px;
    color: var(--gray-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

.program-features {
    list-style: none;
}

.program-features li {
    font-size: 14px;
    color: var(--gray-dark);
    margin-bottom: 10px;
    padding-left: 4px;
}

/* Use Cases Section */
.cases {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.case-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.case-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.case-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.case-card:hover::before {
    opacity: 0.08;
}

.case-label {
    display: inline-block;
    background: var(--gray-light);
    color: var(--gray-dark);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
}

.case-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--dark-color);
    letter-spacing: -0.01em;
}

.case-comparison {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.case-before,
.case-after {
    flex: 1;
    text-align: center;
}

.case-status {
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-medium);
    margin-bottom: 8px;
}

.case-time {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 12px;
}

.case-before .case-time {
    color: var(--gray-medium);
}

.case-after .case-time {
    color: var(--primary-color);
}

.case-desc {
    font-size: 13px;
    color: var(--gray-medium);
    line-height: 1.6;
}

.case-arrow {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 700;
}

.case-improvement {
    text-align: center;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--gray-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: border-color 0.2s ease;
}

.testimonial-card:hover {
    border-color: var(--primary-color);
}

.testimonial-role {
    display: inline-block;
    background: var(--gray-light);
    color: var(--gray-dark);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 500;
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
}

.testimonial-text {
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 16px;
}

.testimonial-author {
    font-size: 13px;
    color: var(--gray-medium);
    font-weight: 500;
}

/* Clients Section */
.clients {
    background-color: var(--gray-light);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
}

.client-logo {
    background-color: var(--white);
    padding: 32px 16px;
    border-radius: var(--radius-md);
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    border: 1px solid var(--border-color);
    transition: border-color 0.2s ease;
}

.client-logo:hover {
    border-color: var(--gray-medium);
}

/* Flow Section */
.flow {
    background-color: var(--white);
}

.flow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.flow-step {
    background-color: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    position: relative;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.flow-step:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.flow-number {
    display: inline-block;
    background: var(--gray-light);
    color: var(--gray-dark);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
}

.flow-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark-color);
    letter-spacing: -0.01em;
}

.flow-description {
    font-size: 14px;
    color: var(--gray-medium);
    line-height: 1.7;
}

/* Authority Section */
.authority {
    background-color: var(--white);
}

.authority-content {
    display: flex;
    gap: 48px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.authority-image {
    flex-shrink: 0;
}

.authority-placeholder {
    width: 200px;
    height: 200px;
    background-color: var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--gray-medium);
}

.authority-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.authority-credentials p {
    font-size: 15px;
    color: var(--gray-medium);
    line-height: 1.8;
    margin-bottom: 12px;
}

/* CTA Section */
.cta {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
    letter-spacing: -0.02em;
}

.cta-description {
    font-size: 17px;
    margin-bottom: 40px;
    line-height: 1.7;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

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

.cta .btn-primary:hover {
    background-color: var(--gray-light);
    border-color: var(--gray-light);
}

.cta .btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta .btn-secondary:hover {
    border-color: var(--white);
}

.cta .btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.cta .btn-outline:hover {
    border-color: var(--white);
}

.cta-subsidy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 14px;
}

.subsidy-icon {
    font-size: 16px;
}

.cta-subsidy .subsidy-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
}

/* Footer */
.footer {
    background-color: var(--white);
    color: var(--gray-dark);
    padding: 64px 0 32px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--dark-color);
    letter-spacing: -0.01em;
}

.footer-section p {
    font-size: 14px;
    color: var(--gray-medium);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--gray-medium);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: var(--dark-color);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-medium);
}

/* Policy and Company Pages */
.policy-section,
.company-section {
    padding: 160px 0 80px;
    background: var(--white);
}

.policy-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 16px;
    text-align: center;
}

.policy-updated {
    text-align: center;
    color: var(--gray-medium);
    font-size: 14px;
    margin-bottom: 48px;
}

.policy-content,
.company-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2,
.company-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    margin-top: 48px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-color);
}

.policy-content p,
.company-content p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

.policy-content ul,
.company-content ul {
    margin: 16px 0 24px 24px;
}

.policy-content ul li,
.company-content ul li {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 8px;
}

.contact-info {
    background: var(--gray-light);
    padding: 24px;
    border-radius: var(--radius-md);
    margin-top: 24px;
}

.contact-info p {
    margin-bottom: 12px;
}

.contact-info a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Company Info Table */
.company-info-table {
    margin: 24px 0;
}

.info-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 24px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.info-label {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 15px;
}

.info-value {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.8;
}

.info-value ul {
    margin: 0;
    padding-left: 20px;
}

.info-value ul li {
    margin-bottom: 8px;
}

/* Logo link */
.site-header .logo {
    text-decoration: none;
    color: var(--primary-color);
}

.site-header .logo:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-header .logo {
        font-size: 18px;
    }

    .nav {
        display: none;
    }

    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 120px 0 60px;
    }

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

    .hero-badge {
        margin-bottom: 28px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 24px;
    }

    .hero-note {
        text-align: center;
        font-size: 12px;
        line-height: 1.6;
    }

    .hero-title {
        font-size: 34px;
        line-height: 1.35;
        margin-bottom: 24px;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 12px;
        line-height: 1.6;
    }

    .hero-subtitle-sub {
        font-size: 16px;
        margin-bottom: 28px;
        line-height: 1.65;
    }

    .hero-description {
        font-size: 15px;
        margin-bottom: 36px;
        line-height: 1.8;
    }

    .hero-illustration {
        max-width: 100%;
        margin: 32px auto 16px;
    }

    .hero-illustration-secondary {
        max-width: 100%;
        margin: 16px auto 32px;
    }

    .hero-stats {
        margin-bottom: 36px;
    }

    .section-title {
        font-size: 30px;
        margin-bottom: 16px;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 48px;
        line-height: 1.75;
    }

    section {
        padding: 60px 0;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 400px;
    }

    .hero-stat {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 14px 16px;
    }

    .stat-number {
        font-size: 18px;
    }

    .stat-label {
        font-size: 11px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .benefit-item {
        padding: 32px 24px;
    }

    .benefit-title {
        font-size: 17px;
        margin-bottom: 12px;
    }

    .benefit-description {
        font-size: 14px;
        line-height: 1.75;
    }

    .merits-grid,
    .cases-grid,
    .testimonials-grid,
    .flow-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .program-types {
        grid-template-columns: 1fr;
    }

    .case-comparison {
        flex-direction: column;
        gap: 24px;
    }

    .case-arrow {
        transform: rotate(90deg);
    }

    .authority-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 100px 0 50px;
    }

    .policy-section,
    .company-section {
        padding: 120px 0 60px;
    }

    .policy-title {
        font-size: 28px;
    }

    .info-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .info-label {
        font-weight: 700;
    }

    section {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .limited-badge {
        font-size: 13px;
        padding: 6px 14px;
    }

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

    .hero-subtitle-sub {
        font-size: 14px;
    }

    .hero-illustration {
        margin: 24px auto 12px;
        max-width: 100%;
    }

    .hero-illustration-secondary {
        margin: 12px auto 24px;
        max-width: 100%;
    }

    .section-title {
        font-size: 24px;
    }

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

    .merit-card,
    .case-card,
    .program-type,
    .flow-step {
        padding: 24px 20px;
    }

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

    .hero-features {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* New Styles for Consultation LP */

/* Hero Features */
.hero-features {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

.hero-feature {
    background-color: var(--gray-light);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-dark);
    border: 1px solid var(--border-color);
}

/* Problems Section */
.problems-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Problem List */
.problem-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 16px;
    margin-bottom: 48px;
}

.problem-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.problem-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-orange) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.problem-item:hover::before {
    opacity: 1;
}

.problem-number {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-medium);
    margin-bottom: 12px;
    padding: 4px 10px;
    background-color: var(--gray-light);
    border-radius: 4px;
}

.problem-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.problem-description {
    font-size: 14px;
    color: var(--gray-medium);
    line-height: 1.7;
}

/* Consultation CTA */
.consultation-cta {
    text-align: center;
    background: var(--primary-color);
    padding: 48px;
    border-radius: var(--radius-lg);
    color: var(--white);
}

.consultation-cta-text {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

/* Flow Note */
.flow-note {
    background-color: var(--gray-light);
    padding: 24px;
    border-radius: var(--radius-md);
    margin-top: 48px;
    border: 1px solid var(--border-color);
}

.flow-note p {
    margin-bottom: 8px;
    color: var(--gray-medium);
    line-height: 1.7;
    font-size: 15px;
}

.flow-note p:first-child {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 12px;
}

/* Consultation Form */
.consultation-form {
    background-color: var(--white);
    padding: 96px 0;
}

.form {
    max-width: 720px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.form-group,
.form-group-full {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.required {
    color: #FF3B30;
    font-size: 12px;
    margin-left: 4px;
}

.optional {
    color: var(--gray-medium);
    font-size: 12px;
    margin-left: 4px;
}

.form-input,
.form-textarea {
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background-color: var(--white);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-radio-group {
    display: flex;
    gap: 24px;
    margin-top: 8px;
}

.form-radio {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.form-radio input[type="radio"] {
    margin-right: 8px;
    cursor: pointer;
}

.form-radio span {
    font-size: 14px;
    color: var(--gray-dark);
}

.form-privacy {
    margin: 24px 0;
    padding: 16px;
    background-color: var(--gray-light);
    border-radius: 8px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    margin-right: 8px;
    margin-top: 4px;
    cursor: pointer;
}

.form-checkbox span {
    font-size: 14px;
    color: var(--gray-dark);
}

.form-checkbox a {
    color: var(--primary-color);
    text-decoration: underline;
}

.form-submit {
    text-align: center;
}

.btn-submit {
    width: 100%;
    max-width: 400px;
    margin-bottom: 16px;
}

.form-note {
    font-size: 13px;
    color: var(--gray-medium);
}

/* FAQ Section */
.faq-section {
    background-color: var(--gray-light);
    padding: 96px 0;
}

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

.faq-item {
    background-color: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    border: 1px solid var(--border-color);
    transition: border-color 0.2s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    letter-spacing: -0.01em;
}

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

.faq-answer {
    font-size: 15px;
    color: var(--gray-medium);
    line-height: 1.7;
    padding-left: 36px;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 600px;
    margin: 0 auto 48px;
}

.hero-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #006b8f 0%, #004d6b 100%);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-stat:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 0;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.2;
}

.hero-note {
    font-size: 13px;
    color: var(--gray-medium);
    margin-top: 0;
    text-align: center;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0 70px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

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

.benefit-item {
    background-color: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.benefit-item:hover {
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
    transform: translateY(-4px);
}

.benefit-item:hover::before {
    opacity: 0.1;
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    line-height: 1;
}

.benefit-icon-emoji {
    font-size: 56px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.benefit-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 12px;
    letter-spacing: 0;
}

.benefit-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.benefit-description {
    font-size: 14px;
    color: var(--gray-medium);
    line-height: 1.6;
}

.benefits-cta {
    text-align: center;
    background-color: var(--white);
    padding: 48px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.benefits-cta-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

/* Seminar Schedule Section */
.seminar-schedule {
    padding: 96px 0;
    background-color: var(--white);
}

.seminar-info-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
    padding: 32px;
    background-color: var(--gray-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.seminar-info-item {
    text-align: center;
}

.seminar-info-label {
    font-size: 13px;
    color: var(--gray-medium);
    margin-bottom: 8px;
    font-weight: 500;
}

.seminar-info-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
}

.seminar-dates {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.seminar-date-card {
    background-color: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.seminar-date-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.seminar-date-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.seminar-date {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
}

.seminar-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.seminar-badge-available {
    background-color: #dcfce7;
    color: #166534;
}

.seminar-badge-few {
    background-color: #fef3c7;
    color: #92400e;
}

.seminar-time {
    font-size: 15px;
    color: var(--gray-medium);
    margin-bottom: 16px;
    font-weight: 500;
}

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

.seminar-note {
    background-color: var(--gray-light);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.seminar-note p {
    font-size: 15px;
    color: var(--gray-dark);
    margin-bottom: 16px;
    font-weight: 600;
}

.seminar-note ul {
    list-style: none;
    padding-left: 0;
}

.seminar-note li {
    font-size: 14px;
    color: var(--gray-medium);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.seminar-note li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.seminar-guarantee {
    margin-top: 24px !important;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    color: var(--primary-color) !important;
}

/* Form Benefits */
.form-benefits {
    margin-top: 48px;
    padding: 32px;
    background-color: var(--gray-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.form-benefits-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 16px;
    text-align: center;
    letter-spacing: -0.01em;
}

.form-benefits-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.form-benefits-list li {
    font-size: 15px;
    color: var(--gray-medium);
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
}

.form-benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
}

/* LINE Button Styles */
.btn-line {
    background: #06C755;
    color: var(--white);
    border-color: #06C755;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    position: relative;
}

.btn-line:hover {
    background: #05B04B;
    border-color: #05B04B;
    box-shadow: var(--shadow-lg);
}

.btn-pulse {
    animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(6, 199, 85, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(6, 199, 85, 0.5);
    }
}

.limited-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
    animation: limitedPulse 1.5s ease-in-out infinite;
}

@keyframes limitedPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

.line-icon {
    font-size: 20px;
}

.btn-xlarge {
    padding: 18px 36px;
    font-size: 18px;
    border-radius: var(--radius-full);
}

.btn-nav-line {
    background: #06C755;
    color: var(--white) !important;
}

.btn-nav-line:hover {
    background: #05B04B;
}

/* LINE CTA Section */
.line-cta-section {
    padding: 96px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.line-benefits-box {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin: 48px 0;
}

.line-benefits-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}

.line-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.line-benefit {
    text-align: center;
    padding: 24px;
}

.line-benefit-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.line-benefit h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.line-benefit p {
    font-size: 14px;
    color: var(--gray-medium);
    line-height: 1.6;
}

.line-cta-button-wrapper {
    margin: 48px 0;
}

.line-cta-note {
    font-size: 13px;
    color: var(--gray-medium);
    margin-top: 12px;
}

.line-qr-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    margin-top: 48px;
    padding: 32px;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.line-qr-placeholder {
    width: 180px;
    height: 180px;
    background-color: var(--gray-light);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--border-color);
}

.line-qr-icon {
    font-size: 60px;
    margin-bottom: 8px;
}

.line-qr-placeholder p {
    font-size: 14px;
    color: var(--gray-medium);
    margin: 4px 0;
}

.line-qr-note {
    font-size: 11px !important;
}

.line-qr-text {
    text-align: left;
}

.line-qr-instruction {
    font-size: 15px;
    color: var(--gray-dark);
    margin: 8px 0;
    font-weight: 500;
}

/* Consultant Section */
.consultant-section {
    padding: 96px 0;
    background-color: var(--white);
}

.consultant-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.consultant-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: all 0.2s ease;
}

.consultant-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.consultant-image-placeholder {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    background-color: var(--gray-light);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-color);
}

.consultant-image-icon {
    font-size: 48px;
    color: var(--gray-medium);
}

.consultant-image-note {
    font-size: 10px;
    color: var(--gray-medium);
    margin-top: 8px;
}

.consultant-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.consultant-title {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 16px;
}

.consultant-description {
    font-size: 14px;
    color: var(--gray-medium);
    line-height: 1.7;
    text-align: left;
}

.consultant-note {
    background-color: var(--gray-light);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
}

.consultant-note p {
    font-size: 15px;
    color: var(--gray-dark);
    line-height: 1.7;
}

.consultant-note p:first-child {
    font-weight: 600;
    margin-bottom: 12px;
}

/* Additional responsive styles */
@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 100%;
    }

    .hero-stat {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 12px 10px;
    }

    .stat-number {
        font-size: 16px;
    }

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

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

    .consultant-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .line-benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .line-qr-section {
        flex-direction: column;
        gap: 24px;
    }

    .line-qr-text {
        text-align: center;
    }

    .seminar-info-box {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 20px;
    }

    .seminar-dates {
        grid-template-columns: 1fr;
    }

    .problem-list {
        grid-template-columns: 1fr;
    }

    .form {
        padding: 32px 24px;
    }

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

    .form-radio-group {
        flex-direction: column;
        gap: 12px;
    }

    .consultation-cta {
        padding: 32px 24px;
    }

    .consultation-cta-text {
        font-size: 20px;
    }
}

/* ==================== Authority Section ==================== */
.authority-section {
    padding: 64px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-light) 100%);
    border-bottom: 1px solid var(--border-color);
}

.authority-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.authority-item {
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.authority-item:hover {
    box-shadow: var(--shadow-lg);
}

.authority-number {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1.2;
}

.authority-label {
    font-size: 14px;
    color: var(--gray-medium);
    font-weight: 500;
}

.authority-logos {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.authority-logos-title {
    font-size: 14px;
    color: var(--gray-medium);
    margin-bottom: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.authority-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.authority-badge {
    padding: 12px 24px;
    background: var(--white);
    border: 2px solid var(--accent-color);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    box-shadow: var(--shadow-sm);
}

/* ==================== ROI Section ==================== */
.roi-section {
    padding: 80px 0 70px;
    background: var(--gray-light);
    border-bottom: 1px solid var(--border-color);
}

.roi-calculator {
    max-width: 900px;
    margin: 48px auto 0;
}

.roi-example {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 48px;
    box-shadow: none;
}

.roi-example-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--border-color);
}

.roi-breakdown {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.roi-section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
}

.roi-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    margin-bottom: 12px;
    background: var(--gray-light);
    border-radius: var(--radius-sm);
}

.roi-item.highlight {
    background: #fef3c7;
    border: 2px solid var(--accent-color);
}

.roi-item-label {
    font-size: 14px;
    color: var(--gray-dark);
    font-weight: 500;
    flex: 1;
}

.roi-item-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-left: 16px;
}

.roi-item-value.negative {
    color: var(--success-green);
}

.roi-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin-top: 16px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-weight: 700;
}

.roi-total.success {
    background: var(--success-green);
}

.roi-total-label {
    font-size: 16px;
}

.roi-total-value {
    font-size: 24px;
}

.roi-result {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.roi-result-main,
.roi-result-annual {
    text-align: center;
    padding: 32px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde047 100%);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.roi-result-label {
    font-size: 14px;
    color: var(--gray-dark);
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.roi-result-value {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1.2;
    margin-bottom: 8px;
}

.roi-result-detail {
    font-size: 12px;
    color: var(--gray-medium);
}

.roi-graph-placeholder {
    margin: 40px 0;
    padding: 32px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
}

.roi-graph-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 24px;
    text-align: center;
}

.roi-graph-bars {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 200px;
    gap: 8px;
    margin-bottom: 16px;
}

.roi-graph-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--accent-color) 0%, var(--accent-orange) 100%);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    position: relative;
    transition: transform 0.2s ease;
}

.roi-graph-bar:hover {
    transform: scaleY(1.05);
}

.roi-graph-bar-label {
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: var(--gray-medium);
    font-weight: 600;
    white-space: nowrap;
}

.roi-graph-breakeven {
    position: relative;
    margin-top: 32px;
    padding-top: 16px;
}

.roi-graph-breakeven-line {
    position: absolute;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--success-green);
}

.roi-graph-breakeven-label {
    position: absolute;
    top: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--success-green);
    white-space: nowrap;
}

.roi-note {
    margin-top: 40px;
    padding: 24px;
    background: #dbeafe;
    border-left: 4px solid var(--primary-color);
    border-radius: var(--radius-sm);
}

.roi-note p {
    margin-bottom: 8px;
    color: var(--gray-dark);
    line-height: 1.8;
}

.roi-note strong {
    color: var(--primary-color);
}

/* ==================== Support Section ==================== */
.support-section {
    padding: 96px 0;
    background: var(--white);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.support-card {
    padding: 40px 32px;
    background: var(--gray-light);
    border-radius: var(--radius-md);
    border: 2px solid var(--border-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.support-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.support-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.support-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.support-list {
    list-style: none;
}

.support-list li {
    padding: 12px 0;
    padding-left: 24px;
    position: relative;
    color: var(--gray-dark);
    line-height: 1.6;
}

.support-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: 700;
}

.support-guarantee {
    margin-top: 64px;
    padding: 40px;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: var(--radius-lg);
    text-align: center;
}

.support-guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--white);
    border-radius: 999px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
}

.support-guarantee-icon {
    font-size: 24px;
    font-weight: 700;
    color: var(--success-green);
}

.support-guarantee-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
}

.support-guarantee-description {
    font-size: 16px;
    color: var(--gray-dark);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* ==================== Testimonial Metrics ==================== */
.testimonial-metrics {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--gray-light);
    border-radius: var(--radius-sm);
}

.testimonial-metric {
    flex: 1;
    text-align: center;
}

.testimonial-metric-value {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.testimonial-metric-label {
    display: block;
    font-size: 11px;
    color: var(--gray-medium);
    font-weight: 600;
    line-height: 1.3;
}

/* ==================== Responsive Design for New Sections ==================== */
@media (max-width: 768px) {
    .authority-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .authority-item {
        padding: 24px 16px;
    }

    .authority-number {
        font-size: 28px;
    }

    .authority-badges {
        flex-direction: column;
    }

    .roi-breakdown {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .roi-example {
        padding: 24px;
    }

    .roi-result {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .roi-result-value {
        font-size: 36px;
    }

    .roi-graph-bars {
        height: 150px;
        gap: 4px;
    }

    .support-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .support-card {
        padding: 32px 24px;
    }

    .testimonial-metrics {
        flex-direction: column;
        gap: 12px;
    }

    .testimonial-metric-value {
        font-size: 18px;
    }
}

/* ==================== Tax Reform 2026 Section ==================== */
.tax-reform-section {
    padding: 80px 0 70px;
    background: var(--primary-color);
    border-bottom: 1px solid var(--border-color);
}

.tax-reform-section .section-title,
.tax-reform-section .section-subtitle {
    color: var(--white);
}

.tax-comparison {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin: 48px 0;
}

.tax-scenario {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: none;
}

.tax-scenario-label {
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    color: var(--white);
}

.tax-scenario-label.bad {
    background: #ef4444;
}

.tax-scenario-label.good {
    background: var(--success-green);
}

.tax-scenario-content {
    padding: 32px;
}

.tax-scenario-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.tax-scenario-list {
    list-style: none;
    padding: 0;
}

.tax-scenario-list li {
    padding: 12px 0;
    padding-left: 24px;
    position: relative;
    color: var(--gray-dark);
    line-height: 1.6;
}

.tax-scenario-list li:before {
    position: absolute;
    left: 0;
    font-weight: 700;
}

.tax-scenario.good .tax-scenario-list li:before {
    content: "✓";
    color: var(--success-green);
}

.tax-scenario.bad .tax-scenario-list li:before {
    content: "×";
    color: #ef4444;
}

.tax-benefits-detail {
    margin-top: 64px;
}

.tax-benefits-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 40px;
    padding: 24px 40px;
    background: linear-gradient(135deg, #006b8f 0%, #004d6b 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: inline-block;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tax-benefit-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    border-left: 4px solid var(--secondary-color);
    box-shadow: none;
    position: relative;
}

.tax-benefit-badge {
    position: absolute;
    top: -12px;
    right: 32px;
    background: var(--accent-orange);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.tax-benefit-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.tax-benefit-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.tax-benefit-description {
    color: var(--gray-dark);
    line-height: 1.8;
}

/* ==================== Curriculum Section ==================== */
.curriculum-section {
    padding: 80px 0 70px;
    background: var(--primary-color);
    border-bottom: 1px solid var(--border-color);
}

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

.curriculum-intro {
    max-width: 800px;
    margin: 40px auto;
    text-align: center;
}

.curriculum-intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 64px 0;
}

.curriculum-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    border: none;
    box-shadow: none;
    transition: transform 0.2s ease;
}

.curriculum-card:hover {
}

.curriculum-number {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
}

.curriculum-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.curriculum-subtitle {
    font-size: 14px;
    color: var(--gray-medium);
    margin-bottom: 20px;
    font-weight: 600;
}

.curriculum-list {
    list-style: none;
}

.curriculum-list li {
    padding: 12px 0;
    padding-left: 24px;
    position: relative;
    color: var(--gray-dark);
    line-height: 1.6;
    font-size: 14px;
}

.curriculum-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.curriculum-outcome {
    margin-top: 64px;
    padding: 48px;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: var(--radius-lg);
}

.curriculum-outcome-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 40px;
}

.curriculum-outcome-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.curriculum-outcome-item {
    text-align: center;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.curriculum-outcome-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.curriculum-outcome-item p {
    font-size: 14px;
    color: var(--gray-dark);
    font-weight: 600;
    line-height: 1.5;
}

/* ==================== Persona Badges ==================== */
.problem-persona-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.problem-persona-profile {
    padding: 16px 20px;
    background: var(--gray-light);
    border-left: 4px solid var(--accent-color);
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.8;
}

/* ==================== Responsive Design for New Sections ==================== */
@media (max-width: 768px) {
    .tax-comparison {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .tax-benefit-badge {
        top: -8px;
        right: 16px;
        font-size: 10px;
        padding: 4px 12px;
    }

    .tax-benefit-name {
        font-size: 16px;
    }

    .tax-benefit-value {
        font-size: 22px;
    }

    .curriculum-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .curriculum-outcome-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .curriculum-outcome-item {
        padding: 20px 16px;
    }

    .curriculum-outcome-icon {
        font-size: 32px;
    }

    .problem-persona-profile {
        font-size: 13px;
        padding: 14px 16px;
    }
}
