header,
footer:not(.corefree-footer) {
    display: none;
}

:root {
    --primary-color: #0055b8;
    --primary-dark: #004497;
    --primary-light: rgba(0, 85, 184, 0.1);
    --secondary-color: #4da8ff;
    --accent-color: #ff9500;
    --accent-light: #fff7ed;
    --warning-color: #e53935;
    --warning-light: rgba(229, 57, 53, 0.1);
    --success-color: #27ae60;
    --dark-color: #1a1a1a;
    --light-color: #f9f9f9;
    --gray-color: #f0f0f0;
    --text-color: #333;
    --text-light: #666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

body {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 700;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.2rem;
    margin: 2rem 0 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 50px;
    height: 3px;
    transform: translateX(-50%);
    background-color: var(--primary-color);
}

h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    color: var(--primary-color);
}

p {
    margin-bottom: 1rem;
}

.strong {
    font-weight: bold;
}

.btn a {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    text-align: center;
    transition: all 0.3s ease;
    margin: 1rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn a:hover {
    background-color: #ff8000;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

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

.btn a-primary:hover {
    background-color: #0044a0;
}

.center {
    text-align: center;
}

section .container {
    margin: 0 auto;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Pulse animation for warning effect */
@keyframes prob_pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(229, 57, 53, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(229, 57, 53, 0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

/* Header Styles */
header {
    background-color: white;
    padding: 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.logo span {
    color: var(--secondary-color);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    overflow: hidden;
    padding: 80px 0;
}

section.hero .container {
    margin: 0 auto;
}

section.hero .btn a {
    padding-right: 40px;
    padding-left: 40px;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

/* Two column layout for desktop */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: var(--text-color);
    background: none;
    padding: 0;
}

.hero-subtitle {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
    padding: 6px 16px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 85, 184, 0.2);
    color: var(--light-color);
    background-color: var(--primary-color);
}

section.hero .strong {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

section.hero .strong .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.tagline-container {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
    font-weight: 500;
}

.tagline-text {
    margin-right: 10px;
}

.tagline-logo {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    margin: 0;
}

.tagline-logo img {
    height: 1.5em;
    width: auto;
}

section.hero .hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 90%;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Dashboard for mobile display */
section.hero .mobile-dashboard {
    display: none; /* Hidden by default for desktop */
    width: 100%;
    max-width: 500px;
    margin: 0 auto 30px;
    position: relative;
    perspective: 1200px;
}

/* 3D Dashboard - Right Column for Desktop */
.hero-graphic {
    position: relative;
    perspective: 1500px;
}

.dashboard-container {
    position: relative;
    transform: rotateY(-15deg) rotateX(10deg);
    transform-style: preserve-3d;
    transition: all 0.5s ease;
}

.dashboard-container:hover {
    transform: rotateY(-5deg) rotateX(5deg);
}

.dashboard-mockup {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform-style: preserve-3d;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.glow-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at 50% 50%, rgba(77, 168, 255, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
    mix-blend-mode: screen;
    pointer-events: none;
    opacity: 0.6;
}

.floating-notification {
    position: absolute;
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 220px;
    transform: translateZ(50px);
    z-index: 3;
}

.notification-1 {
    top: -30px;
    right: -30px;
    animation: float 6s ease-in-out infinite;
}

.notification-2 {
    bottom: -20px;
    left: -40px;
    animation: float 7s ease-in-out infinite 1s;
}

.notification-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.notification-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-right: 10px;
}

.notification-title {
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
    color: var(--secondary-color);
}

.notification-text {
    font-size: 0.8rem;
    margin: 0;
    color: var(--text-light);
}

/* Feature Cards */
section.hero .feature-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
}

section.hero .feature-card {
    background: var(--light-color);
    border: 1px solid rgba(0, 85, 184, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px;
    margin: 0;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.hero *:not(:first-child) {
    margin: 0;
}

section.hero .feature-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-right: 12px;
    flex-shrink: 0;
}

section.hero .feature-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: inherit;
}

section.hero .feature-description {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.5;
    color: inherit;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 85, 184, 0.05);
}

.element-1 {
    width: 300px;
    height: 300px;
    top: 15%;
    right: 5%;
    animation: float 15s ease-in-out infinite;
}

.element-2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    left: 10%;
    animation: float 10s ease-in-out infinite;
}

.element-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    left: 35%;
    animation: float 12s ease-in-out infinite;
    animation-delay: 5s;
}

/* CTA Buttons */
.cta-container {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.btn a,
.btn button {
    display: inline-block;
    padding: 20px 60px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 85, 184, 0.3);
}

.btn button {
    border: none;
}

.btn a::before,
.btn button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn a:hover::before,
.btn button:hover::before {
    left: 100%;
}

.btn a:hover,
.btn button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 85, 184, 0.4);
}

section.hero .btn-primary a,
.btn button,
.btn-primary a {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.btn-secondary a,
section.hero .btn-secondary a {
    background-color: transparent;
    color: var(--primary-color);
    /* border: 2px solid var(--primary-color); */
}

.btn-secondary a:hover,
section.hero .btn-secondary a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

/* Tablet and Mobile specific styles - change to single column */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        order: 1;
        width: 100%;
    }

    .hero-graphic {
        display: none; /* Hide desktop dashboard for tablet/mobile */
    }

    section.hero .mobile-dashboard {
        display: block; /* Show mobile dashboard */
    }

    section.hero .strong {
        font-size: 3rem;
    }

    section.hero .hero-description {
        max-width: 100%;
        margin-bottom: 80px;
    }

    /* For tablet only, keep 2 columns for feature cards */
    section.hero .feature-cards {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 80px;
    }
}

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

    section.hero .strong {
        font-size: 2.5rem;
    }

    .tagline-container {
        font-size: 1.3rem;
    }

    .tagline-logo {
        height: 30px;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }

    /* For mobile, switch feature cards to 1 column */
    section.hero .feature-cards {
        grid-template-columns: 1fr;
    }

    .dashboard-container {
        transform: none;
    }

    .dashboard-container:hover {
        transform: translateY(-10px);
    }

    .notification-1 {
        top: -15px;
        right: -15px;
        max-width: 180px;
    }

    .notification-2 {
        bottom: -15px;
        left: -15px;
        max-width: 180px;
    }

    .cta-container {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    section.hero .strong {
        font-size: 2rem;
    }

    .notification-1,
    .notification-2 {
        display: none;
    }
}

/* problem Section */
.problem-section {
    padding: 120px 0;
    margin: 0;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #bfdbfe 100%);
    position: relative;
}

.problem-section *:nth-child(n + 1) {
    margin: 0;
}

.problem-section h3 {
    color: inherit;
}

.problem-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

.problem-section .section-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease-out;
}

.problem-section .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 24px;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.problem-section .section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

.problem-section .data-source {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

.problem-section .problems-intro {
    background: white;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-color);
    margin-bottom: 64px;
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.problem-section .intro-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 24px;
}

.problem-section .intro-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.problem-section .problem-checklist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    text-align: left;
}

.problem-section .checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--accent-light);
    border-radius: 12px;
    border: 1px solid #fed7aa;
    margin: 0;
}

.problem-section .checklist-icon {
    width: 20px;
    height: 20px;
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.problem-section .checklist-text {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
    margin: 0;
}

.problem-section .reality-stats {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 20px;
    padding: 48px;
    margin-bottom: 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.problem-section .reality-stats::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='7' cy='7' r='7'/%3E%3Ccircle cx='53' cy='53' r='7'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.problem-section .reality-content {
    position: relative;
    z-index: 1;
}

.problem-section .reality-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: inherit;
}

.problem-section .reality-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.problem-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.problem-section .stat-item {
    text-align: center;
}

.problem-section .stat-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    animation: countUp 2s ease-out 1s both;
}

.problem-section .stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
    line-height: 1.3;
}

.problem-section .problems-detailed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.problem-section .problem-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-color);
    position: relative;
    transition: all 0.3s ease;
    /* animation: fadeInUp 0.8s ease-out calc(0.6s + var(--index) * 0.1s) both; */
}

.problem-section .problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.problem-section .problem-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.problem-section .problem-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    box-shadow: 0 4px 12px rgba(0, 85, 184, 0.3);
}

.problem-section .problem-number {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
}

.problem-section .problem-meta {
    flex: 1;
}

.problem-section .problem-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 4px;
    line-height: 1.3;
}

.problem-section .problem-category {
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.problem-section .problem-content {
    margin-bottom: 32px;
}

.problem-section .problem-description {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 24px;
}

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

.problem-section .metric-box {
    background: #eff6ff;
    border: 1px solid var(--primary-light);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.problem-section .metric-box-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 4px;
}

.problem-section .metric-box-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.problem-section .impact-severity {
    background: var(--warning-light);
    border: 1px solid #fecaca;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.problem-section .severity-indicator {
    width: 8px;
    height: 8px;
    background: var(--warning-color);
    border-radius: 50%;
    animation: prob_pulse 2s infinite;
}

.problem-section .severity-text {
    display: inline;
    font-size: 0.875rem;
    color: var(--warning-color);
    font-weight: 600;
}

.problem-section .transformation-cta {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: white;
    padding: 64px 48px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

.problem-section .transformation-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 85, 184, 0.1) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

.problem-section .cta-content {
    position: relative;
    z-index: 1;
}

.problem-section .cta-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.problem-section .cta-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .problem-section .problem-checklist {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .problem-section .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .problem-section .problems-detailed {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .problem-section .section-title {
        font-size: 2.25rem;
    }

    .problem-section .problems-intro {
        padding: 32px 24px;
    }

    .problem-section .reality-stats {
        padding: 40px 24px;
    }

    .problem-section .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .problem-section .stat-number {
        font-size: 2.5rem;
    }

    .problem-section .problem-card {
        padding: 32px 24px;
    }

    .problem-section .problem-metrics {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .problem-section .transformation-cta {
        padding: 48px 24px;
    }

    .problem-section .cta-title {
        font-size: 1.875rem;
    }
}

/* Service Detail Section */
.service-detail .container {
    max-width: 1000px;
    margin: 0 auto;
}

.service-detail * {
    margin: 0;
}

/* Service-detail Header */
.service-detail .section-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.service-detail .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.service-detail .section-header h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.service-detail .section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Services Container */
.service-detail .services-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-detail .service-accordion {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.service-detail .service-accordion:nth-child(1) {
    animation-delay: 0.1s;
}
.service-detail .service-accordion:nth-child(2) {
    animation-delay: 0.2s;
}
.service-detail .service-accordion:nth-child(3) {
    animation-delay: 0.3s;
}

.service-detail .service-accordion:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Accordion Header */
.service-detail .accordion-header {
    padding: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    transition: all 0.3s ease;
}

.service-detail .accordion-header:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.service-detail .accordion-header.active {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.service-detail .service-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-right: 25px;
    transition: all 0.3s ease;
}

.service-detail .accordion-header.active .service-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.service-detail .accordion-title {
    flex-grow: 1;
}

.service-detail .accordion-title h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.service-detail .accordion-title p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.service-detail .accordion-toggle {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-detail .accordion-toggle::before {
    content: "+";
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    transition: all 0.3s ease;
}

.service-detail .accordion-header.active .accordion-toggle {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(45deg);
}

/* Accordion Content */
.service-detail .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.service-detail .accordion-content.active {
    max-height: 2000px;
}

.service-detail .content-wrapper {
    padding: 40px;
    background: white;
}

/* Before/After Toggle */
.service-detail .ba-toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    background: var(--grey-color);
    border-radius: 15px;
    padding: 8px;
    position: relative;
}

.service-detail .ba-toggle {
    flex: 1;
    padding: 15px 30px;
    text-align: center;
    cursor: pointer;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-detail .ba-toggle.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 85, 184, 0.3);
}

.service-detail .ba-toggle:not(.active) {
    color: var(--text-light);
}

.service-detail .ba-toggle:hover:not(.active) {
    background: white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Content Display */
.service-detail .ba-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.service-detail .ba-content.active {
    display: block;
}

.service-detail .content-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: start;
}

.service-detail .main-content {
    background: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.service-detail .main-content h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.service-detail .after-content .main-content h4 {
    color: var(--primary-color);
}

.service-detail .before-content .main-content h4 {
    color: var(--warning-color);
}

.service-detail .before-content .main-content {
    border-left: 5px solid var(--warning-color);
}

.service-detail .after-content .main-content {
    border-left: 5px solid var(--primary-color);
}

.service-detail .main-content::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    border-radius: 0 0 0 100%;
    opacity: 0.1;
}

.service-detail .before-content .main-content::before {
    background: var(--warning-color);
}

.service-detail .after-content .main-content::before {
    background: var(--primary-color);
}

.service-detail .content-list {
    list-style: none;
}

.service-detail .content-list li {
    margin-bottom: 15px;
    position: relative;
    line-height: 1.6;
}

.service-detail .before-content .content-list li::before {
    content: "⚠️";
    font-size: 1.2rem;
    display: inline-block;
    margin-right: 0.5em;
}

.service-detail .after-content .content-list li::before {
    content: "✅";
    font-size: 1.2rem;
    display: inline-block;
    margin-right: 0.5em;
}

/* Metrics Card */
.service-detail .metrics-card {
    width: 200px;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.service-detail .before-content .metrics-card {
    background: linear-gradient(135deg, var(--warning-color), #ff6b6b);
}

.service-detail .after-content .metrics-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.service-detail .metrics-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    animation: rotate 20s linear infinite;
}

.service-detail .metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.service-detail .metric-label {
    font-size: 0.9rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Key Features */
.service-detail .key-features {
    margin-top: 40px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    border: 2px solid var(--primary-light);
}

.service-detail .features-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 25px;
}

.service-detail .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.service-detail .feature-item {
    text-align: center;
    padding: 20px;
    background: var(--light-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-detail .feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-detail .feature-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.service-detail .feature-title {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

.service-detail .feature-description {
    font-size: 0.9rem;
    color: var(--text-light);
}

.service-detail .cta-inner {
    text-align: center;
    margin-top: 80px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 1s forwards;
}

.service-detail .cta-contents {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 85, 184, 0.3);
    position: relative;
    overflow: hidden;
}

.service-detail .cta-txt {
    position: relative;
    z-index: 1;
}

.service-detail .cta-txt h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: inherit;
}

.service-detail .cta-txt p {
    margin-bottom: 30px;
    opacity: 0.9;
    font-size: 1.1rem;
}

.service-detail .cta-container {
    justify-content: center;
    margin-top: 0;
}

.service-detail .btn-secondary a,
.service-detail .btn-secondary a:hover {
    background: #fff;
}

/* Responsive Design */
@media (max-width: 992px) {
    .service-detail .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-detail .metrics-card {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .service-detail .accordion-header {
        padding: 25px 20px;
    }

    .service-detail .accordion-title {
        flex: 1;
    }

    .service-detail .service-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin-right: 20px;
        margin-bottom: 10px;
    }

    .service-detail .accordion-title h3 {
        font-size: 1.5rem;
    }

    .service-detail .content-wrapper {
        padding: 30px 20px;
    }

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

/* CTA Section from ビジュアルアコーディオンスタイル */
.cta-container {
    text-align: center;
    margin-top: 60px;
}

.cta-box {
    background-color: white;
    border-radius: 15px;
    padding: 50px;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background-color: var(--primary-light);
    border-radius: 0 0 0 100%;
    z-index: 0;
}

.cta-box::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background-color: var(--primary-light);
    border-radius: 0 100% 0 0;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-text {
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Process Section - タイムライン風デザイン（装飾要素追加） */
.process {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.process::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(77, 168, 255, 0.1) 0%, rgba(77, 168, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.process::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 85, 184, 0.1) 0%, rgba(0, 85, 184, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.process .section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.process .section-header h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.timeline-container {
    position: relative;
    margin-top: 50px;
    padding: 0 20px;
}

/* タイムラインの中央線 */
.timeline-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: calc(100% - 50px);
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    z-index: 1;
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-content {
    width: 45%;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* 左右交互に配置 */
.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%;
}

/* タイムラインのステップ番号 */
.timeline-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 85, 184, 0.3);
    z-index: 3;
}

/* 新規：画像コンテナの追加 */
.image-container {
    position: absolute;
    width: 40%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* 左側画像 */
.timeline-item:nth-child(even) .image-container {
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
}

/* 右側画像 */
.timeline-item:nth-child(odd) .image-container {
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
}

/* 画像スタイル */
.process-image {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 5px solid white;
    overflow: hidden;
}

.process-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* 画像キャプション */
.image-caption {
    margin-top: 0;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    font-style: italic;
    max-width: 250px;
}

/* 画像の装飾要素 */
.image-decoration {
    position: absolute;
    z-index: -1;
}

.decoration-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(77, 168, 255, 0.1);
    top: -20px;
    right: -20px;
}

.decoration-square {
    width: 80px;
    height: 80px;
    background: rgba(0, 85, 184, 0.05);
    bottom: -15px;
    left: -15px;
    transform: rotate(45deg);
}

/* 矢印ポインター */
.timeline-item:nth-child(odd) .timeline-content::after {
    content: "";
    position: absolute;
    top: 20px;
    right: -15px;
    width: 30px;
    height: 30px;
    background-color: white;
    transform: rotate(45deg);
    box-shadow: 5px -5px 10px rgba(0, 0, 0, 0.05);
}

.timeline-item:nth-child(even) .timeline-content::after {
    content: "";
    position: absolute;
    top: 20px;
    left: -15px;
    width: 30px;
    height: 30px;
    background-color: white;
    transform: rotate(45deg);
    box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.05);
}

.timeline-title {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.timeline-title h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}

.timeline-description {
    padding-left: 65px;
    color: var(--text-light);
    margin: 0;
}

.timeline-feature {
    background-color: var(--light-color);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.timeline-feature-title {
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: var(--text-color);
}

.timeline-feature-title::before {
    content: "✓";
    color: var(--success-color);
    margin-right: 10px;
    font-weight: bold;
}

.timeline-feature-title + p {
    margin-top: 0;
}

.cta-container {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.process .btn a {
    background-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 85, 184, 0.2);
}

.process .btn a:hover {
    background-color: var(--secondary-color);
    box-shadow: 0 10px 25px rgba(0, 85, 184, 0.3);
}

@media (max-width: 992px) {
    .timeline-container::before {
        left: 30px;
    }

    .timeline-item {
        justify-content: flex-start;
    }

    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        margin-right: 0 !important;
    }

    .timeline-number {
        left: 10px;
    }

    .timeline-item:nth-child(odd) .timeline-content::after,
    .timeline-item:nth-child(even) .timeline-content::after {
        left: -15px;
        right: auto;
    }

    .timeline-item:nth-child(odd) .timeline-content::after {
        transform: rotate(225deg);
    }

    .decoration-element {
        display: none;
    }
}

@media (max-width: 768px) {
    .process .section-header h2 {
        font-size: 1.8rem;
    }

    .timeline-title {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-icon {
        margin-bottom: 10px;
    }

    .timeline-description {
        padding-left: 0;
    }
}

/* Pricing Section - 組み合わせデザイン */
.pricing {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
    overflow: hidden;
}

.pricing::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(0, 85, 184, 0.1) 0%, rgba(0, 85, 184, 0) 70%);
    border-radius: 0 0 0 300px;
    z-index: 0;
}

.pricing::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(77, 168, 255, 0.1) 0%, rgba(77, 168, 255, 0) 70%);
    border-radius: 0 200px 0 0;
    z-index: 0;
}

section.pricing .section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.pricing-container {
    position: relative;
    z-index: 1;
}

.pricing-intro {
    background-color: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
    text-align: center;
}

.pricing .intro-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.pricing .intro-text {
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 30px;
    font-weight: normal;
    font-size: 16px;
    opacity: 1;
}

.pricing-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-badge {
    display: inline-block;
    padding: 8px 20px;
    margin: 0;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* プランカード - モダンカード風デザインから */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Popular プランの強調表示 */
.pricing-card.popular {
    transform: scale(1.05);
    z-index: 2;
    border: 2px solid #43a047;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 30px;
    background-color: #43a047;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 15px;
    border-radius: 0 0 10px 10px;
    z-index: 2;
}

.standard-badge {
    position: absolute;
    top: 0;
    right: 30px;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 15px;
    border-radius: 0 0 10px 10px;
    z-index: 2;
}

.custom-badge {
    position: absolute;
    top: 0;
    right: 30px;
    background-color: var(--accent-color);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 15px;
    border-radius: 0 0 10px 10px;
    z-index: 2;
}

.pricing .card-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
    margin: 0;
}

.card-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='1' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

/* プランごとの異なるグラデーション */
.basic .card-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.minimal .card-header {
    background: linear-gradient(135deg, #43a047 0%, #7cb342 100%);
}

.custom .card-header {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ffbb50 100%);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    position: relative;
    color: #fff;
}

.plan-description {
    font-size: 0.9rem;
    opacity: 0.9;
}

.card-price {
    padding: 30px 20px;
    margin: 0;
    text-align: center;
    background-color: var(--light-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    display: block;
}

.minimal .price-amount {
    color: #43a047;
}

.custom .price-amount {
    color: var(--accent-color);
}

.price-period {
    color: var(--text-light);
    font-size: 0.9rem;
}

.pricing .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.plan-target {
    margin-bottom: 20px;
    padding: 10px 15px;
    background-color: var(--primary-light);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
}

.minimal .plan-target {
    background-color: rgba(67, 160, 71, 0.1);
    color: #43a047;
}

.custom .plan-target {
    background-color: rgba(255, 149, 0, 0.1);
    color: var(--accent-color);
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.feature-list li {
    margin-bottom: 15px;
    padding-left: 28px;
    position: relative;
}

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

.feature-list li p {
    display: inline;
}

.feature-highlight {
    font-weight: 600;
    color: var(--primary-color);
}

.minimal .feature-highlight {
    color: #43a047;
}

.custom .feature-highlight {
    color: var(--accent-color);
}

.checkmark {
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

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

/* バックオフィス支援業務セクション */
.backoffice-services {
    background-color: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    max-width: 1200px;
    margin: 80px auto 20px;
    width: 90%;
}

.backoffice-services *:not(:first-child) {
    margin: 0;
}

.backoffice-services .services-header {
    text-align: center;
    margin-bottom: 50px;
}

.backoffice-services .services-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.backoffice-services .services-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.backoffice-services .services-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 20px;
}

/* タブナビゲーション */
.backoffice-services .tab-navigation {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.backoffice-services .tab-button {
    padding: 12px 24px;
    border: none;
    background-color: var(--light-color);
    color: var(--text-color);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.backoffice-services .tab-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.backoffice-services .tab-button:hover::before {
    left: 100%;
}

.backoffice-services .tab-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.backoffice-services .tab-button.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    box-shadow: 0 5px 20px rgba(0, 85, 184, 0.3);
}

.backoffice-services .tab-button p {
    display: inline;
}

.backoffice-services .tab-icon {
    font-size: 1.2rem;
}

/* タブコンテンツ */
.backoffice-services .tab-content {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.backoffice-services .tab-content.active {
    display: block;
}

/* サービスリスト */
.backoffice-services .services-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.backoffice-services .service-group {
    background: linear-gradient(135deg, var(--light-color) 0%, white 100%);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.backoffice-services .service-group:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.backoffice-services .service-group-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.backoffice-services .service-group-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.backoffice-services .service-group-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.backoffice-services .service-list {
    list-style: none;
}

.backoffice-services .service-list-item {
    padding: 10px 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.backoffice-services .service-list-item:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.backoffice-services .service-list-item p {
    display: inline;
}

.backoffice-services .service-check {
    color: var(--success-color);
    font-weight: bold;
}

/* 全サービス表示 */
.backoffice-services .all-services {
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(77, 168, 255, 0.05) 100%);
    border-radius: 15px;
    padding: 40px;
    margin-top: 40px;
}

.backoffice-services .all-services-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
}

.backoffice-services .all-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.backoffice-services .all-service-item {
    background-color: white;
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.backoffice-services .all-service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: var(--light-color);
}

/* CTAセクション */
.backoffice-services .cta-section {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background-color: var(--light-color);
    border-radius: 15px;
}

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

.backoffice-services .cta-text + div {
    justify-content: center;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .backoffice-services .backoffice-services {
        padding: 30px 20px;
    }

    .backoffice-services .services-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .backoffice-services .tab-navigation {
        gap: 5px;
    }

    .backoffice-services .tab-button {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .backoffice-services .services-title {
        font-size: 1.5rem;
    }

    .backoffice-services .all-services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.popular {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        grid-column: span 1;
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }

    .pricing .section-header h2 {
        font-size: 1.8rem;
    }
}
/* Team Section */
.team {
    padding: 100px 0;
    position: relative;
}

/* 幾何学的背景要素 */
.team::before {
    content: "";
    position: absolute;
    top: 50px;
    right: 50px;
    width: 200px;
    height: 200px;
    background: var(--primary-light);
    transform: rotate(45deg);
    border-radius: 20px;
    z-index: 0;
}

.team::after {
    content: "";
    position: absolute;
    bottom: 100px;
    left: 50px;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, var(--secondary-color), transparent);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 0;
}

.team-section *:not(:first-child) {
    margin: 0;
}

.team-section .section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

.team-section .section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
}

.team-section .section-header h2::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 3px;
}

.team-section .section-header .subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* CEO プロフィール - カード型 */
.team-section .ceo-profile-container {
    position: relative;
    z-index: 1;
    margin-bottom: 100px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.team-section .ceo-card {
    background: var(--white);
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.team-section .ceo-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--secondary-color));
}

.team-section .ceo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.team-section .ceo-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    min-height: 400px;
}

.team-section .ceo-image-section {
    background: linear-gradient(135deg, var(--primary-light), var(--light-color));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.team-section .ceo-image {
    width: 200px;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
    background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: static;
    clip-path: unset;
    overflow: hidden;
}

.team-section .ceo-card:hover .ceo-image {
    transform: scale(1.05);
}

.team-section .ceo-info {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 1;
}

.team-section .ceo-header {
    margin-bottom: 30px;
}

.team-section .ceo-name {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 8px;
}

.team-section .ceo-name-en {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.team-section .ceo-title {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 25px;
    position: relative;
}

.team-section .ceo-title::after {
    content: "";
    position: absolute;
    top: 0;
    right: -15px;
    width: 0;
    height: 0;
    border-left: 15px solid var(--primary-color);
    border-top: 23px solid transparent;
    border-bottom: 20px solid transparent;
}

.team-section .ceo-quote {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
    padding: 20px 0;
    border-left: 4px solid var(--secondary-color);
    padding-left: 25px;
    font-style: italic;
}

.team-section .ceo-description {
    color: var(--text-light);
    line-height: 1.8;
}

.team-section .ceo-description p {
    margin-bottom: 20px;
}

/* チーム & ビジョンセクション */
.team-section .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.team-section {
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

.team-section .vision-section {
    animation: slideInRight 0.8s ease-out 0.4s both;
}

.team-section .content-card {
    background: var(--white);
    padding: 40px;
    border-radius: 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-left: 6px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
}

.team-section .content-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border-left-color: var(--secondary-color);
}

.team-section .content-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
}

.team-section .content-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
}

.team-section .content-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* 専門性セクション - 特別デザイン */
.team-section .expertise-container {
    background: var(--light-color);
    padding: 80px 0;
    margin: 80px calc(-50vw + 50%);
    width: 100vw;
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.team-section .expertise-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-section .expertise-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-section .expertise-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
}

.team-section .expertise-title::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.1;
}

.team-section .expertise-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.team-section .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.team-section .value-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 0;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.team-section .value-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.team-section .value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.team-section .value-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.team-section .value-item:hover .value-icon {
    background: var(--secondary-color);
    transform: rotate(360deg);
}

.team-section .value-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.team-section .value-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.team-section .vision-message {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: var(--white);
    border-radius: 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

.team-section .vision-message::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--secondary-color);
    border-radius: 50%;
}

.team-section .vision-text {
    font-size: 1.2rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 500;
}

/* CTA Button */
.team-section .cta-container {
    justify-content: center;
    margin-top: 60px;
}

/* レスポンシブデザイン */
@media (max-width: 992px) {
    .team-section .ceo-content {
        grid-template-columns: 1fr;
    }

    .team-section .ceo-image-section {
        padding: 40px;
    }

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

    .team-section .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-section .expertise-container {
        margin: 80px calc(-25vw + 25%);
        width: 100vw;
    }
}

@media (max-width: 768px) {
    .team-section .ceo-info {
        padding: 30px;
    }

    .team-section .content-card {
        padding: 30px;
    }

    .team-section .ceo-name {
        font-size: 1.8rem;
    }

    .team-section .ceo-quote {
        font-size: 1.2rem;
    }

    .team-section .section-header h2 {
        font-size: 2.2rem;
    }

    .team-section .expertise-container {
        margin: 60px calc(-10vw + 10%);
        width: 100vw;
        padding: 60px 0;
    }

    .team {
        padding: 60px 0;
    }

    .team::before,
    .team::after {
        display: none;
    }
}

/* レスポンシブデザイン */
@media (max-width: 992px) {
    .profile-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-image {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .profile-quote {
        border-left: none;
        padding-left: 0;
        border-top: 3px solid var(--primary-color);
        padding-top: 20px;
    }
}

@media (max-width: 768px) {
    .hero-background {
        height: 50%;
    }

    .profile-card {
        padding: 30px;
    }

    .profile-name {
        font-size: 1.5rem;
    }

    .profile-quote {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .vision-box {
        padding: 30px;
    }

    .vision-title {
        font-size: 1.5rem;
    }
}

/* Contact Section */
#contact {
    padding: 100px 0;
    background-color: white;
}

#contact h2 {
    display: block;
}

.contact-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.contact-info {
    text-align: center;
    margin-bottom: 50px;
}

.contact-method {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.contact-method-card {
    padding: 20px;
    margin: 0 15px;
    display: flex;
    align-items: center;
}

.contact-method-card * {
    margin: 0;
}

@media screen and (max-width: 768px) {
    .contact-method {
        display: inline-block;
    }

    .contact-method p {
        text-align: left;
    }
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    color: var(--primary-color);
}

.contact-form {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

textarea.form-control {
    height: 150px;
    resize: vertical;
}

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

/* Footer Section */
footer.corefree-footer {
    background-color: var(--gray-color);
    color: var(--dark-color);
    padding: 20px 0;
    margin: 0;
    text-align: left;
}

footer.corefree-footer .logo-img img {
    height: 2.5em;
    width: auto;
}

footer.corefree-footer li p {
    margin: 0;
}

.corefree-footer *:not(:first-child) {
    margin-top: 0;
}

footer.corefree-footer .footer-content {
    display: flex;
    gap: 0;
    align-items: flex-start;
    justify-content: center;
}

.footer-content > * {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: baseline;
    margin-bottom: 40px;
}

.footer-content > .footer-column {
    margin-right: 40px;
    margin-bottom: 10px;
    align-items: flex-start;
}

footer.corefree-footer .footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
}

footer.corefree-footer .footer-columns {
    gap: 0;
    margin-bottom: 20px;
}

footer.corefree-footer .footer-column {
    display: flex;
}

footer.corefree-footer .footer-column h4 {
    margin-right: 20px;
    position: relative;
    padding-bottom: 10px;
}

footer.corefree-footer .footer-column h4::after {
    content: "";
    display: block;
    position: absolute;
    margin: 0 auto;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links {
    list-style: none;
    display: flex;
}

.footer-links li {
    margin-bottom: 10px;
    margin-right: 10px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid;
    margin-top: 40px;
    font-size: 0.9rem;
    color: var(--text-light);
    width: 100%;
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero {
        height: auto;
        padding: 100px 0;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-image {
        position: static;
        transform: none;
        width: 80%;
        margin: 50px auto 0;
        display: block;
    }

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

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

    .pricing-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-column {
        margin-bottom: 30px;
    }

    .footer-content > .footer-column,
    footer.corefree-footer .footer-columns {
        margin: auto;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }

    .header-container {
        flex-direction: column;
    }

    .logo {
        margin-bottom: 15px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 10px 0;
    }

    .btn a,
    .btn button {
        padding: 12px 30px;
    }

    .hero {
        padding: 50px 0;
    }

    .step {
        flex-direction: column;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .process-steps::before {
        left: 40px;
        height: calc(100% - 80px);
    }

    .stats-banner {
        flex-direction: column;
        text-align: center;
    }

    .stats-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Solution Section */
.solution-section * {
    margin: 0;
}

.solution-section .animate-fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.solution-section .animate-delay-1 {
    animation-delay: 0.2s;
}
.solution-section .animate-delay-2 {
    animation-delay: 0.4s;
}
.solution-section .animate-delay-3 {
    animation-delay: 0.6s;
}
.solution-section .animate-delay-4 {
    animation-delay: 0.8s;
}

/* Section Structure */
.solution-section > section {
    position: relative;
    margin-bottom: 0;
}

.solution-section .section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
    margin: 0;
}

/* Header Section */
.solution-section .hero-section {
    padding: 100px 0;
    background-color: var(--section-bg-1);
    text-align: center;
    position: relative;
}

.solution-section .hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 85, 184, 0.02) 0%, rgba(77, 168, 255, 0.02) 100%);
}

.solution-section .hero-content {
    position: relative;
    z-index: 1;
}

.solution-section .hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 30px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.solution-section .hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    line-height: 1.8;
    background: none;
    border: none;
}

/* Concept Section */
.solution-section .concept-section {
    padding: 100px 0;
    background-color: var(--section-bg-2);
    position: relative;
}

.solution-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
    display: block;
}

.solution-section .section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Concept Section Enhanced for Pattern A Integration */
.solution-section .concept-content {
    background-color: var(--white);
    border-radius: 16px;
    padding: 60px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 85, 184, 0.08);
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.solution-section .concept-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px 16px 0 0;
}

.solution-section .concept-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-color);
}

.solution-section .concept-text p {
    display: inline;
}

.solution-section .concept-text div {
    margin-bottom: 30px;
}

.solution-section .concept-text div:last-child {
    margin-bottom: 0;
}

.solution-section .highlight-text {
    color: var(--primary-color);
    font-weight: 600;
}

/* Feature Section */
.solution-section .feature-section {
    padding: 100px 0;
    background-color: var(--section-bg-1);
    position: relative;
}

.solution-section .feature-container {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    padding: 80px 60px;
    color: white;
    position: relative;
    overflow: hidden;
}

.solution-section .feature-container::before {
    content: "";
    position: absolute;
    top: -20%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.solution-section .feature-container::after {
    content: "";
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.solution-section .feature-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    color: inherit;
}

.solution-section .feature-layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.solution-section .feature-card {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.solution-section .feature-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    display: block;
    width: auto;
    height: auto;
    align-items: unset;
    justify-content: center;
    margin: 0;
    border-radius: 0;
    background: none;
    color: inherit;
}

.solution-section .feature-name {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.solution-section .feature-desc {
    line-height: 1.7;
    font-size: 1.05rem;
    text-align: left;
}

.solution-section .feature-divider {
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 800;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Process Section */
.solution-section .process-section {
    padding: 100px 0;
    background-color: var(--section-bg-2);
    position: relative;
}

.solution-section .process-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.solution-section .process-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

/* TODO: 要調整 */
.solution-section .process-flow::before {
    content: "";
    position: absolute;
    top: 60px;
    left: 16.66%;
    right: 16.66%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    z-index: -100;
    display: none;
}

.solution-section .process-step {
    background-color: var(--white);
    border-radius: 16px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 1;
    border-top: 4px solid var(--primary-color);
}

.solution-section .step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(0, 85, 184, 0.3);
}

.solution-section .step-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.solution-section .step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.solution-section .step-description {
    margin-bottom: 30px;
    line-height: 1.8;
    color: var(--text-color);
    text-align: left;
}

.solution-section .step-features {
    text-align: left;
}

.solution-section .step-feature {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-color);
    font-size: 0.95rem;
}

.solution-section .step-feature::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Services Section */
.solution-section .services-section {
    padding: 100px 0;
    background-color: var(--section-bg-1);
    position: relative;
}

.solution-section .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.solution-section .service-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 85, 184, 0.08);
    padding: 0;
}

.solution-section .service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.solution-section .service-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 50px 30px;
    text-align: center;
    color: white;
    position: relative;
    display: block;
    align-items: unset;
}

.solution-section .service-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    display: inline-block;
    align-items: unset;
    width: auto;
    height: auto;
}

.solution-section .service-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: inherit;
}

.solution-section .service-content {
    padding: 50px 40px;
}

.solution-section .service-list {
    list-style: none;
    margin-bottom: 30px;
}

.solution-section .service-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 18px;
    line-height: 1.7;
}

.solution-section .service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.solution-section .service-tagline {
    background-color: var(--primary-light);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
}

/* Benefits Section */
.solution-section .benefits-section {
    padding: 100px 0;
    background-color: var(--gray-color);
    position: relative;
}

.solution-section .benefits-container {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 24px;
    padding: 80px 60px;
    color: white;
    position: relative;
    overflow: hidden;
}

.solution-section .benefits-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='7' cy='7' r='7'/%3E%3Ccircle cx='53' cy='53' r='7'/%3E%3Ccircle cx='7' cy='53' r='7'/%3E%3Ccircle cx='53' cy='7' r='7'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.solution-section .benefits-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    z-index: 1;
    display: block;
    color: inherit;
}

.solution-section .benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.solution-section .benefit-item {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.solution-section .benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.solution-section .benefit-text {
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.5;
}

/* CTA Section */
.solution-section .cta-section {
    padding: 100px 0;
    background-color: var(--section-bg-1);
    text-align: center;
    position: relative;
}

.solution-section .cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.solution-section .cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.solution-section .cta-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.solution-section .btn {
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .feature-layout,
    .process-flow,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .process-flow::before {
        display: none;
    }

    .feature-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.4rem;
    }

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

    .concept-content,
    .feature-container,
    .benefits-container {
        padding: 40px 30px;
        border-radius: 12px;
    }

    .concept-text {
        font-size: 1.1rem;
        text-align: left;
    }
}

/* Improved Physical x System Feature Design */
.feature-box {
    margin-top: 40px;
    position: relative;
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px;
}

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

.feature-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    position: relative;
}

.feature-column {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    margin: 0;
}

.feature-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.feature-icon {
    font-size: 2.2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    border-radius: 50%;
    color: white;
}

.physical-icon {
    background-color: var(--primary-color);
}

.system-icon {
    background-color: var(--secondary-color);
}

.feature-heading {
    font-size: 1.4rem;
    color: var(--text-color);
    font-weight: 700;
}

.feature-description {
    line-height: 1.7;
    color: var(--text-light);
}

/* card */

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

.card-icon {
    font-size: 3rem;
    display: inline-block;
    position: relative;
}

.card-icon::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: inherit;
    margin: 0;
}

.card-title h3 {
    color: #fff;
}

.card-body {
    padding: 30px 30px 5px;
    flex: 1;
    margin-top: 0;
}

/* other */
.cta-container {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.concept-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.concept-text {
    flex: 1;
    padding-right: 40px;
}

.concept-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .image-container {
        display: none;
    }

    .concept-content {
        flex-direction: column;
    }

    .concept-text {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

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

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

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

    .step-features {
        flex-direction: column;
    }

    .feature-item {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .solution-cards {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .step-container {
        flex-direction: column;
    }

    .step-number {
        flex: 0 0 auto;
        padding: 15px;
        flex-direction: row;
        justify-content: flex-start;
    }

    .step-number span {
        margin-left: 10px;
    }

    .benefits-section {
        padding: 40px 30px;
    }
}

.cta-container {
    text-align: center;
    margin-top: 50px;
}

.cta-btn a {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--warning-color);
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(229, 57, 53, 0.3);
    font-size: 1.1rem;
}

.cta-btn a:hover {
    background-color: #d32f2f;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.4);
}

.pain-grid-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .pain-grid {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 1.8rem;
    }

    .stats-banner {
        flex-direction: column;
        text-align: center;
    }

    .stats-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 992px) {
    .concept-content {
        flex-direction: column;
    }

    .concept-text {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

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

    .solution-section .process-step,
    .solution-section .service-card {
        margin-bottom: 20px;
    }

    .solution-section .feature-layout,
    .solution-section .process-flow,
    .solution-section .services-grid {
        display: block;
    }

    .solution-section .feature-divider {
        width: 80px;
        height: 80px;
        margin: 20px auto;
    }

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

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

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

    .step-features {
        flex-direction: column;
    }

    .feature-item {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .solution-cards {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .step-container {
        flex-direction: column;
    }

    .step-number {
        flex: 0 0 auto;
        padding: 15px;
        flex-direction: row;
        justify-content: flex-start;
    }

    .step-number span {
        margin-left: 10px;
    }

    .benefits-section {
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    .solution-section .benefits-grid {
        display: block;
        padding: 0 20px 20px;
        margin-bottom: 20px;
    }

    .solution-section .benefit-icon {
        margin-bottom: 0;
    }

    .solution-section .benefit-item {
        margin-bottom: 20px;
    }

    .backoffice-services .all-services,
    .backoffice-services {
        padding: 20px;
    }
}

#contact .radio-group {
    display: grid;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

#contact .radio-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

#contact .radio-item:hover {
    border-color: #3498db;
    background: #f8faff;
}

#contact .radio-item.selected {
    border-color: #3498db;
    background: linear-gradient(135deg, #3498db10, #764ba210);
}

#contact .radio-input {
    margin-right: 0.75rem;
    width: 1.25rem;
    height: 1.25rem;
    accent-color: #3498db;
}

#contact .radio-label {
    font-weight: 500;
    cursor: pointer;
    flex: 1;
}

#contact .other-input {
    margin-top: 0.5rem;
    display: none;
}

#contact .other-input.show {
    display: block;
}

#contact .submit-container {
    text-align: center;
    margin-top: 40px;
}

/* Thanks Container Styles */
.thanks-container {
    display: none;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.02) 0%, var(--primary-light) 100%);
    border-left: 3px solid var(--secondary-color);
    border-radius: 0 8px 8px 0;
    padding: 60px 40px;
    box-shadow: 0 4px 20px rgba(39, 174, 96, 0.08);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.thanks-container:before {
    content: "";
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(39, 174, 96, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.thanks-container:after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.thanks-content {
    position: relative;
    z-index: 1;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.thanks-icon:before {
    content: "✓";
    color: white;
    font-size: 36px;
    font-weight: bold;
}

.thanks-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 70%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-details {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    padding: 30px;
    margin: 40px 0;
    border: 1px solid var(--primary-light);
}

.thanks-details-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.thanks-details-title:before {
    content: "📧";
    font-size: 24px;
}

.thanks-info-list {
    list-style: none;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.thanks-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--text-color);
}

.thanks-info-item:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
    margin-top: 2px;
}

/* 入力内容確認セクション */
.input-summary {
    background: var(--light-color);
    border-radius: 8px;
    padding: 30px;
    margin: 30px 0;
    border: 1px solid var(--gray-color);
    text-align: left;
}

.input-summary-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
    margin-top: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.input-summary-title:before {
    content: "📝";
    font-size: 24px;
}

.summary-grid {
    display: grid;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.summary-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 6px;
    border-left: 3px solid var(--primary-color);
    align-items: start;
}

.summary-label {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

.summary-value {
    color: var(--text-color);
    font-size: 16px;
    word-break: break-word;
    white-space: pre-wrap;
    margin-bottom: 0;
}

.summary-value.empty {
    color: var(--text-light);
    font-style: italic;
}
