* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #E53935;
    --primary-red-hover: #EF5350;
    --primary-red-dark: #C62828;
    --light-red-bg: #FFEBEE;
    --lighter-red-bg: #FFF5F5;
    --text-dark: #212121;
    --text-gray: #616161;
    --text-light: #9E9E9E;
    --white: #FFFFFF;
    --border-color: #E0E0E0;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 16px rgba(0,0,0,0.15);
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
}

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

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

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-left: auto;
    margin-right: 30px;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-red);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-icon {
    display: block;
    width: 25px;
    height: 20px;
    position: relative;
}

.menu-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary-red);
    position: absolute;
    transition: all 0.3s ease;
}

.menu-icon span:nth-child(1) {
    top: 0;
}

.menu-icon span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.menu-icon span:nth-child(3) {
    bottom: 0;
}

.mobile-menu-btn.active .menu-icon span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.mobile-menu-btn.active .menu-icon span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .menu-icon span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 999;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.mobile-nav-link {
    padding: 15px;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--border-color);
}

/* CTA Button */
.cta-button {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.cta-button:hover {
    background: var(--primary-red-hover);
    transform: translateY(-2px);
}

.header-cta {
    font-size: 14px;
    padding: 10px 24px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 50%, rgba(255,255,255,0.4) 100%);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
    max-width: 100%;
    margin: 0;
    padding-left: 60px;
    padding-right: 60px;
}

.hero-content {
    position: relative;
    width: 100%;
    padding: 80px 0;
}

.hero-text {
    max-width: 800px;
    text-align: left;
}

.hero-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--primary-red);
    line-height: 1.3;
    margin-bottom: 20px;
    text-align: left;
    white-space: nowrap;
}

.hero-subtitle {
    margin-bottom: 30px;
    text-align: left;
}

.subtitle-lead {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.8;
    font-weight: 500;
}

.subtitle-lead .highlight {
    color: var(--primary-red);
    font-weight: 700;
}

.subtitle-sub {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.subtitle-sub .emphasis {
    font-weight: 700;
    color: var(--text-dark);
}

.subtitle-benefit {
    background: linear-gradient(135deg, var(--light-red-bg) 0%, var(--white) 100%);
    border-left: 4px solid var(--primary-red);
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.1);
    max-width: 500px;
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.benefit-percentage {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-red);
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-text {
    flex: 1;
}

.benefit-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    display: block;
    margin-bottom: 5px;
}

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

.hero-benefit {
    background: var(--white);
    padding: 20px;
    border-left: 4px solid var(--primary-red);
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}

.benefit-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-red);
    display: block;
    margin-bottom: 8px;
}

.hero-cta {
    font-size: 20px;
    padding: 16px 40px;
}

.visual-container {
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.flow-icons {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 15px;
    border-radius: 50px;
    box-shadow: var(--shadow-hover);
}

.flow-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-icons {
    display: flex;
    gap: 10px;
}

/* Icons */
.icon-check::before { content: "✓"; color: var(--primary-red); font-weight: 700; margin-right: 10px; }
.icon-menu::before { content: "☰"; }
.icon-arrow::before { content: "→"; color: var(--primary-red); }
.icon-plus::before { content: "+"; }
.icon-mic::before,
.icon-mic-large::before,
.icon-mic-flow::before,
.icon-mic-strength::before { content: "🎤"; }
.icon-notebook::before { content: "📝"; }
.icon-fax::before { content: "📠"; }
.icon-mail::before,
.icon-mail-flow::before { content: "✉️"; }
.icon-chat::before,
.icon-chat-large::before,
.icon-chat-flow::before { content: "💬"; }
.icon-share-large::before,
.icon-send-flow::before,
.icon-send-strength::before { content: "📤"; }
.icon-message-strength::before { content: "💬"; }
.icon-checklist-strength::before { content: "✅"; }
.icon-free-strength::before { content: "🆓"; }

/* Problem Section */
.problem {
    padding: 80px 0;
    background: var(--white);
}

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

.problem-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto 40px;
}

.problem-item {
    font-size: 18px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
}

.empathy-phrase {
    font-size: 24px;
    text-align: center;
    line-height: 1.8;
    margin-top: 40px;
}

.emphasis {
    color: var(--primary-red);
    font-weight: 700;
}

.mobile-br {
    display: none;
}

/* Solution Section */
.solution {
    padding: 80px 0;
    background: var(--lighter-red-bg);
}

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

.solution-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.solution-item i {
    font-size: 48px;
    display: block;
    margin-bottom: 20px;
}

.solution-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.solution-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

.center-cta {
    display: block;
    margin: 0 auto;
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background: var(--white);
}

.problem-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
}

.problem-image {
    width: 300px;
    height: auto;
    flex-shrink: 0;
    animation: float 3s ease-in-out infinite;
}

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

.problem-list {
    flex: 1;
    list-style: none;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.problem-item:last-child {
    border-bottom: none;
}

.problem-item i {
    color: var(--primary-red);
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.problem-item span {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Solution Section */
.solution {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--lighter-red-bg) 100%);
    position: relative;
}

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

.section-description {
    font-size: 18px;
    color: var(--text-gray);
    margin-top: 20px;
    line-height: 1.8;
}

.solution-content {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-top: 60px;
}

.solution-main-image {
    width: 450px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.solution-main-image:hover {
    transform: scale(1.02);
}

.solution-points {
    flex: 1;
}

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

.solution-point {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-point::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(229, 57, 53, 0.05), transparent);
    transition: left 0.5s ease;
}

.solution-point:hover::before {
    left: 100%;
}

.solution-point:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(229, 57, 53, 0.2);
    border-left-color: var(--primary-red);
}

.point-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-hover) 100%);
    color: var(--white);
    font-size: 20px;
    font-weight: 900;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(229, 57, 53, 0.3);
}

.point-content strong {
    display: block;
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 700;
}

.point-content p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Results Section */
.results {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF5F5 0%, #FFEBEE 100%);
    position: relative;
    overflow: hidden;
}

.results::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(229, 57, 53, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.results-header {
    text-align: center;
    margin-bottom: 60px;
}

.results-badge {
    display: inline-block;
    background: var(--primary-red);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.results-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-top: 20px;
    margin-bottom: 30px;
    font-weight: 500;
}

.results-showcase {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-10px);
}

.showcase-image {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.showcase-item:hover .showcase-image {
    box-shadow: 0 15px 40px rgba(229, 57, 53, 0.2);
    transform: scale(1.05);
}

.showcase-caption {
    margin-top: 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-gray);
    line-height: 1.4;
}

.showcase-center {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.satisfaction-laurel {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: pulse 2s ease-in-out infinite;
}

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

.laurel-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.satisfaction-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.score-label {
    display: block;
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.score-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0;
    margin-top: -5px;
}

.score-number {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-red) 0%, #FF6B6B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.score-percent {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-red) 0%, #FF6B6B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

/* Statistics Section - Industry Crisis */
.statistics {
    padding: 100px 0;
    background: 
        linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.95) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><line x1="0" y1="0" x2="100" y2="100" stroke="%23ff000010" stroke-width="0.5"/><line x1="100" y1="0" x2="0" y2="100" stroke="%23ff000010" stroke-width="0.5"/></svg>');
    background-size: cover, 50px 50px;
    position: relative;
    overflow: hidden;
}

.statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 0, 0, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(255, 0, 0, 0.1) 0%, transparent 40%);
    z-index: 1;
    animation: crisis-breathe 4s ease-in-out infinite;
}

@keyframes crisis-breathe {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.7;
    }
}

.statistics::after {
    content: '!';
    position: absolute;
    top: 50px;
    right: 10%;
    font-size: 200px;
    color: rgba(255, 0, 0, 0.03);
    font-weight: 900;
    transform: rotate(-15deg);
    z-index: 0;
}

.statistics .section-title {
    font-size: 36px;
    font-weight: 900;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.crisis-number {
    color: #FF3333;
    font-size: 52px;
    font-weight: 900;
    display: inline-block;
    margin: 0 10px;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    animation: alarm-pulse 1.5s ease-in-out infinite;
}

@keyframes alarm-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.crisis-subtitle {
    text-align: center;
    color: rgba(255, 200, 200, 0.9);
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 60px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.crisis-subtitle::before,
.crisis-subtitle::after {
    content: '⚠';
    display: inline-block;
    margin: 0 15px;
    font-size: 16px;
    color: rgba(255, 100, 100, 0.5);
    vertical-align: middle;
    animation: warning-blink 2s ease-in-out infinite;
}

@keyframes warning-blink {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.8;
    }
}

/* Hope Section - 明るい未来への転換点 */
.hope-section {
    padding: 150px 0;
    background-image: url('images/hope-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 600px;
}

.hope-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.4) 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.hope-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 60px;
    text-align: center;
    margin: 0 auto;
}


.hope-lead {
    font-size: 18px;
    color: var(--primary-red);
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.9);
}

.hope-title {
    font-size: 52px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 3px 3px 6px rgba(255, 255, 255, 0.95);
}

.hope-subtitle {
    font-size: 20px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.9);
}

.hope-highlight {
    color: var(--primary-red);
    font-size: 32px;
    font-weight: 700;
    margin: 0 10px;
}


.hope-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: var(--primary-red);
    color: white;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(229, 57, 53, 0.3);
}

.hope-cta-button:hover {
    transform: translateY(-3px);
    background: var(--primary-red-hover);
    box-shadow: 0 15px 40px rgba(229, 57, 53, 0.4);
}

.button-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.hope-cta-button:hover .button-arrow {
    transform: translateX(5px);
}

.section-title.white {
    color: #FFFFFF;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}


.stat-card {
    background: 
        linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(20,0,0,0.8) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 0, 0.2);
    padding: 40px 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 
        inset 0 -2px 10px rgba(255, 0, 0, 0.1),
        0 5px 20px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -20%;
    width: 20%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 0, 0, 0.8) 50%, 
        transparent 100%);
    animation: scan-flow 3s linear infinite;
}

@keyframes scan-flow {
    0% {
        left: -20%;
    }
    25% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}


.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(229, 57, 53, 0.3);
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #FF6666 0%, #CC0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    position: relative;
    filter: drop-shadow(0 2px 10px rgba(255, 0, 0, 0.3));
}

.stat-label {
    font-size: 16px;
    font-weight: 700;
    color: #FFDDDD;
    margin-bottom: 10px;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-description {
    font-size: 13px;
    color: rgba(255, 150, 150, 0.6);
    line-height: 1.5;
    font-style: italic;
}

/* Special CTA Section */
.special-cta-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
    position: relative;
}

.special-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
}

.cta-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.enterprise-card {
    background: linear-gradient(135deg, #FFF 0%, #FFF9F9 100%);
    box-shadow: 
        0 0 0 2px rgba(229, 57, 53, 0.2),
        0 20px 60px rgba(229, 57, 53, 0.1);
}

/* リボンとオーバーレイを削除 */

.free-card {
    background: linear-gradient(135deg, #FFF 0%, #F9FFF9 100%);
    box-shadow: 
        0 0 0 2px rgba(76, 175, 80, 0.2),
        0 20px 60px rgba(76, 175, 80, 0.1);
}

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

.enterprise-card:hover {
    box-shadow: 
        0 0 0 2px var(--primary-red),
        0 30px 80px rgba(229, 57, 53, 0.2);
}

.free-card:hover {
    box-shadow: 
        0 0 0 2px #4CAF50,
        0 30px 80px rgba(76, 175, 80, 0.2);
}

.cta-card-inner {
    padding: 0;
}

.cta-image-wrapper {
    width: 100%;
    height: 150px;
    overflow: hidden;
    position: relative;
    border-radius: 20px 20px 0 0;
}

.cta-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

.cta-content {
    padding: 40px;
}

.cta-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.free-badge {
    background: #4CAF50;
    font-size: 16px;
}

.cta-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.highlight-discount {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 20px;
    background: linear-gradient(transparent 60%, rgba(229, 57, 53, 0.2) 60%);
}

.highlight-free {
    color: #4CAF50;
    font-weight: 700;
    background: linear-gradient(transparent 60%, rgba(76, 175, 80, 0.2) 60%);
}

.cta-benefits {
    list-style: none;
    margin-bottom: 40px;
}

.cta-benefits li {
    padding: 12px 0;
    color: var(--text-dark);
    font-size: 15px;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 25px;
}

.cta-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 700;
    font-size: 18px;
}

.free-card .cta-benefits li::before {
    color: #4CAF50;
}

.cta-action-button {
    width: 100%;
    padding: 20px 30px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.cta-action-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

.cta-action-button:hover::before {
    left: 100%;
}

.enterprise-btn {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-hover) 100%);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(229, 57, 53, 0.2);
}

.enterprise-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(229, 57, 53, 0.3);
}

.free-btn {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.2);
}

.free-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.3);
}

.btn-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.cta-action-button:hover .btn-arrow {
    transform: translateX(5px);
}

/* Numbers Section */
.numbers {
    padding: 80px 0;
    background: var(--primary-red);
}

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

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.number-card {
    background: var(--white);
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
}

.number-value {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.number-label {
    font-size: 16px;
    color: var(--text-gray);
}

/* Testimonial Section */
.testimonial {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, #F8F9FA 100%);
    position: relative;
}

.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
    padding: 0 80px;
}

.testimonial-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex: 0 0 100%;
    width: 100%;
    display: none;
}

.testimonial-card.active {
    display: block;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-red) 0%, var(--primary-red-hover) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card.active::before {
    opacity: 1;
}

.testimonial-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 2px solid var(--border-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--text-gray);
    font-size: 24px;
    font-weight: bold;
    padding: 0;
    text-align: center;
    line-height: 1;
}

.testimonial-btn:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.testimonial-btn.prev {
    left: 20px;
}

.testimonial-btn.next {
    right: 20px;
}

.testimonial-btn i {
    width: 24px;
    height: 24px;
    pointer-events: none;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 30px;
    border-radius: 5px;
    background: var(--primary-red);
}

.dot:hover {
    background: var(--primary-red-hover);
}

/* Simple Awards */
.awards-simple {
    margin-top: 40px;
    padding: 20px;
    background: var(--lighter-red-bg);
    border-radius: 10px;
    text-align: center;
}

.awards-label {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.award-items {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-dark);
}

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

.award-text {
    color: var(--text-gray);
}

.award-text strong {
    color: var(--primary-red);
    font-weight: 600;
}

.award-year {
    color: var(--text-gray);
    font-size: 12px;
    opacity: 0.8;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.user-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--lighter-red-bg);
}

.user-info {
    flex: 1;
}

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

.user-role {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.5;
}

.testimonial-body {
    position: relative;
}

.testimonial-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.testimonial-title::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 60px;
    color: var(--lighter-red-bg);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.5;
}

.highlight-yellow {
    background: linear-gradient(transparent 60%, #FFF59D 60%);
    padding: 2px 0;
    font-weight: 600;
}

.highlight-blue {
    background: linear-gradient(transparent 60%, #90CAF9 60%);
    padding: 2px 0;
    font-weight: 600;
}

.highlight-red {
    background: linear-gradient(transparent 60%, var(--lighter-red-bg) 60%);
    padding: 2px 0;
    font-weight: 600;
    color: var(--primary-red);
}

.testimonial-box h3,
.testimonial-reason h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-red);
}

.testimonial-reason {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: var(--lighter-red-bg);
    border-radius: 10px;
}

/* Strengths Section */
.strengths {
    padding: 80px 0;
    background: var(--lighter-red-bg);
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.strengths-grid .strength-card:nth-child(4),
.strengths-grid .strength-card:nth-child(5) {
    grid-column: span 1.5;
}

.strength-card {
    background: var(--white);
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.strength-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.strength-card i {
    font-size: 48px;
    display: block;
    margin-bottom: 20px;
}

.strength-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.strength-card p {
    color: var(--text-gray);
}

/* Features Section - 5つの革新的機能 */
.features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--light-red-bg);
    color: var(--primary-red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.features-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.features-highlight {
    color: var(--primary-red);
    font-size: 48px;
}

.features-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* 5列グリッドレイアウト */
.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(229, 57, 53, 0.15);
}

/* 画像部分 */
.feature-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.05);
}

.feature-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

/* コンテンツ部分 */
.feature-content {
    padding: 25px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature-highlight {
    color: var(--primary-red);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    flex: 1;
}

/* タブレット対応 */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* モバイル対応 */
@media (max-width: 768px) {
    .features-section {
        padding: 60px 0;
    }
    
    .features-title {
        font-size: 28px;
    }
    
    .features-highlight {
        font-size: 32px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .feature-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .feature-image {
        height: 180px;
    }
}

/* Comparison Section - 比較表 */
.comparison-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
}

.comparison-header {
    text-align: center;
    margin-bottom: 60px;
}

.comparison-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.comparison-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* 比較表ラッパー */
.comparison-table-wrapper {
    max-width: 1200px;
    margin: 0 auto 50px;
    overflow-x: auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* 比較表 */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead {
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
}

.comparison-table thead th {
    padding: 25px 20px;
    font-weight: 700;
    text-align: center;
    border-right: 1px solid #E0E0E0;
    position: relative;
}

.comparison-table thead th:last-child {
    border-right: none;
}

.feature-col {
    text-align: left !important;
    width: 25%;
}

.carespace-col {
    background: linear-gradient(135deg, var(--light-red-bg) 0%, #FFE8E8 100%);
    position: relative;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-red);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
}

.product-name {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.product-tagline {
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 400;
}

/* 表ボディ */
.comparison-table tbody tr {
    border-bottom: 1px solid #F0F0F0;
    transition: background 0.2s ease;
}

.comparison-table tbody tr:hover {
    background: #F9F9F9;
}

.comparison-table tbody td {
    padding: 20px;
    text-align: center;
    border-right: 1px solid #F0F0F0;
}

.comparison-table tbody td:last-child {
    border-right: none;
}

.feature-name {
    text-align: left !important;
    font-weight: 600;
    color: var(--text-dark);
}

.feature-icon {
    margin-right: 12px;
    font-size: 20px;
}

/* 評価マーク */
.rating {
    display: block;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

.rating-text {
    display: block;
    font-size: 12px;
    color: var(--text-gray);
}

.rating.excellent {
    color: var(--primary-red);
}

.rating.good {
    color: #4CAF50;
}

.rating.poor {
    color: #FFA500;
}

.rating.none {
    color: #DDD;
}

/* 料金行 */
.price-row {
    background: #F8F9FA;
    font-weight: 700;
}

.price-highlight {
    display: block;
    font-size: 28px;
    color: var(--primary-red);
    margin-bottom: 5px;
}

.price {
    display: block;
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.price-detail {
    display: block;
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 400;
}

/* サマリー */
.comparison-summary {
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.summary-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
}

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

.comparison-cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: var(--primary-red);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(229, 57, 53, 0.3);
}

.comparison-cta-button:hover {
    background: var(--primary-red-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(229, 57, 53, 0.4);
}

/* モバイル対応 */
@media (max-width: 768px) {
    .comparison-section {
        padding: 60px 0;
    }
    
    .comparison-title {
        font-size: 28px;
    }
    
    .comparison-table-wrapper {
        margin: 0 20px 30px;
        border-radius: 15px;
    }
    
    .comparison-table {
        font-size: 14px;
    }
    
    .comparison-table thead th {
        padding: 15px 10px;
    }
    
    .product-name {
        font-size: 16px;
    }
    
    .product-badge {
        display: none;
    }
    
    .comparison-table tbody td {
        padding: 15px 10px;
    }
    
    .feature-icon {
        display: none;
    }
    
    .rating {
        font-size: 28px;
    }
    
    .rating-text {
        font-size: 10px;
    }
    
    .price-highlight {
        font-size: 22px;
    }
    
    .price {
        font-size: 16px;
    }
}

.table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    box-shadow: var(--shadow);
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.comparison-table th {
    background: #F5F5F5;
    font-weight: 700;
}

.comparison-table th.highlight,
.comparison-table td.highlight {
    background: var(--lighter-red-bg);
    color: var(--primary-red);
    font-weight: 700;
}

/* Flow Section */
.flow {
    padding: 80px 0;
    background: var(--lighter-red-bg);
}

.flow-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.flow-card {
    position: relative;
    background: var(--white);
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.flow-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.flow-card i {
    font-size: 48px;
    display: block;
    margin: 20px 0;
}

.flow-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.flow-card p {
    color: var(--text-gray);
}

/* Interview Section */
.interview {
    padding: 80px 0;
    background: var(--white);
}

.interview-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.interview-card {
    background: var(--lighter-red-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.question {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.answer {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
}

/* 3ステップ開始セクション */
.simple-steps-section {
    margin-top: 60px;
    padding: 50px 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    border-radius: 20px;
}

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

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    min-width: 150px;
    text-align: center;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(229, 57, 53, 0.15);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.step-icon {
    font-size: 36px;
    margin-bottom: 5px;
}

.step-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.step-arrow {
    font-size: 32px;
    color: var(--primary-red);
    font-weight: 300;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .simple-steps-section {
        padding: 40px 20px;
    }
    
    .steps-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        font-size: 24px;
    }
    
    .step-item {
        width: 100%;
        max-width: 300px;
    }
}

/* Special Offer Section */
.special-offer-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF5F5 0%, #FFEBEE 100%);
}

.special-offer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.offer-badge {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.offer-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.offer-description {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 50px;
    line-height: 1.6;
}

.offer-description .highlight {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 24px;
}

.offer-main-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.main-feature {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF9F9 100%);
    border: 2px solid #FFE5E5;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.main-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red) 0%, #FF8A80 100%);
}

.main-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(229, 57, 53, 0.2);
    border-color: var(--primary-red);
}

.feature-icon-wrap {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    animation: bounce 2s infinite;
}

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

.main-feature h3 {
    font-size: 26px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.main-feature p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    font-weight: 500;
}

.offer-details {
    background: white;
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.offer-details-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
    position: relative;
}

.offer-details-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-red);
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.offer-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.offer-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.offer-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.offer-text p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.4;
}

.offer-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #FFF5F5 0%, #FFEBEE 100%);
    border-radius: 20px;
}

.offer-urgency {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 25px;
}

.offer-cta-btn {
    font-size: 20px;
    padding: 20px 50px;
    background: var(--primary-red);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(229, 57, 53, 0.3);
}

.offer-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(229, 57, 53, 0.4);
}

.offer-note {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 15px;
}


/* モバイル対応 */
@media (max-width: 768px) {
    /* Special Offer Section Mobile */
    .special-offer-section {
        padding: 30px 15px;
        background: var(--lighter-red-bg);
    }
    
    .special-offer-section .container {
        padding: 0;
    }
    
    /* ヘッダー部分 */
    .offer-header {
        text-align: center;
        margin-bottom: 25px;
    }
    
    .offer-badge {
        display: inline-block;
        background: var(--primary-red);
        color: white;
        font-size: 11px;
        padding: 5px 15px;
        border-radius: 15px;
        font-weight: 700;
        margin-bottom: 10px;
    }
    
    .offer-title {
        font-size: 20px;
        font-weight: 900;
        color: var(--text-dark);
        margin-bottom: 10px;
        line-height: 1.3;
    }
    
    .offer-title .emoji {
        font-size: 24px;
    }
    
    .offer-description {
        font-size: 13px;
        color: var(--text-gray);
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .offer-description .highlight {
        color: var(--primary-red);
        font-size: 18px;
        font-weight: 700;
        display: inline-block;
        margin: 0 2px;
    }
    
    /* メイン特典カード（3つ横並び） */
    .offer-main-features {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin: 20px 0;
    }
    
    .main-feature {
        background: white;
        border-radius: 10px;
        padding: 15px 10px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.08);
        border-top: 3px solid var(--primary-red);
        transition: transform 0.3s ease;
        text-align: center;
    }
    
    .main-feature:active {
        transform: scale(0.98);
    }
    
    .feature-icon-wrap {
        width: 36px;
        height: 36px;
        background: var(--lighter-red-bg);
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        margin: 0 auto 10px;
    }
    
    .main-feature h3 {
        font-size: 14px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 5px;
        line-height: 1.2;
    }
    
    .main-feature p {
        font-size: 11px;
        color: var(--text-gray);
        line-height: 1.4;
    }
    
    /* 追加特典 */
    .offer-details {
        background: white;
        border-radius: 12px;
        padding: 20px;
        margin: 20px 0;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }
    
    .offer-details-title {
        font-size: 16px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 15px;
        text-align: center;
    }
    
    .offer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .offer-item {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        padding: 8px;
        background: var(--lighter-red-bg);
        border-radius: 8px;
    }
    
    .offer-icon {
        font-size: 18px;
        flex-shrink: 0;
        margin-top: 2px;
    }
    
    .offer-text h4 {
        font-size: 11px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 2px;
        line-height: 1.3;
    }
    
    .offer-text p {
        font-size: 10px;
        color: var(--text-gray);
        line-height: 1.3;
    }
    
    /* CTA部分 */
    .offer-cta {
        text-align: center;
        padding: 20px 0 0;
    }
    
    .offer-urgency {
        display: inline-block;
        background: rgba(229, 57, 53, 0.1);
        color: var(--primary-red);
        padding: 8px 20px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 700;
        margin-bottom: 15px;
    }
    
    .offer-cta-btn {
        display: inline-block;
        width: 100%;
        max-width: 280px;
        padding: 14px 20px;
        background: var(--primary-red);
        color: white;
        font-size: 15px;
        font-weight: 700;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 3px 10px rgba(229, 57, 53, 0.3);
    }
    
    .offer-cta-btn:active {
        transform: scale(0.98);
    }
    
    .offer-note {
        font-size: 11px;
        color: var(--text-gray);
        margin-top: 10px;
    }
}

/* Plans Section */
.plans-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
}

.plans-header {
    text-align: center;
    margin-bottom: 60px;
}

.plans-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.plans-subtitle {
    font-size: 18px;
    color: var(--text-gray);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-card {
    background: white;
    border: 2px solid #E0E0E0;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.plan-recommended {
    border-color: var(--primary-red);
    background: #FFF5F5;
    transform: scale(1.05);
}

.plan-recommended:hover {
    transform: scale(1.05) translateY(-5px);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-red);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.plan-enterprise {
    border-color: #E0E0E0;
    background: white;
}

.plan-check {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.plan-header {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid #E0E0E0;
    margin-bottom: 25px;
}

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

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price-amount {
    font-size: 36px;
    font-weight: 900;
    color: var(--text-dark);
}

.price-period {
    font-size: 16px;
    color: var(--text-gray);
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.5;
}

.feature-icon {
    color: var(--primary-red);
    font-weight: 700;
    margin-right: 10px;
    flex-shrink: 0;
}

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

.feature-disabled .feature-icon {
    color: var(--text-light);
}

.plan-current {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #E0E0E0;
    color: var(--text-gray);
    font-size: 14px;
}

.plans-note {
    text-align: center;
    margin-top: 40px;
    color: var(--text-gray);
    font-size: 14px;
}

/* モバイル対応 */
@media (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .plans-section {
        padding: 30px 15px;
        background: #f8f9fa;
    }
    
    .plans-section .container {
        padding: 0;
    }
    
    .plans-header {
        text-align: center;
        margin-bottom: 25px;
    }
    
    .plans-header .section-badge {
        display: inline-block;
        background: var(--lighter-red-bg);
        color: var(--primary-red);
        padding: 5px 20px;
        border-radius: 15px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }
    
    .plans-title {
        font-size: 22px;
        font-weight: 900;
        margin-bottom: 8px;
        color: var(--text-dark);
    }
    
    .plans-subtitle {
        font-size: 13px;
        color: var(--text-gray);
        line-height: 1.5;
    }
    
    /* プランカードをスライド表示 */
    .plans-slider {
        position: relative;
        padding: 15px 50px 0;
        overflow: visible;
    }
    
    .plans-grid {
        position: relative;
        display: block;
    }
    
    .plan-card {
        display: none;
        background: white;
        border: 2px solid #E0E0E0;
        border-radius: 16px;
        padding: 25px;
        margin: 0 auto;
        max-width: 340px;
        box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    }
    
    .plan-card.active {
        display: block;
    }
    
    .plan-card:hover {
        transform: none;
        box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    }
    
    /* プラン切り替えボタン */
    .plan-nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        background: white;
        border: 2px solid var(--lighter-red-bg);
        border-radius: 50%;
        font-size: 20px;
        color: var(--primary-red);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        z-index: 10;
        transition: all 0.3s ease;
    }
    
    .plan-nav-btn:hover {
        background: var(--primary-red);
        color: white;
        border-color: var(--primary-red);
        transform: translateY(-50%) scale(1.1);
    }
    
    .plan-nav-btn.prev {
        left: 5px;
    }
    
    .plan-nav-btn.next {
        right: 5px;
    }
    
    /* プランドットインジケーター */
    .plan-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
    }
    
    .plan-dot {
        width: 8px;
        height: 8px;
        background: #ddd;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .plan-dot.active {
        width: 24px;
        background: var(--primary-red);
        border-radius: 4px;
    }
    
    /* 推奨プランの強調 */
    .plan-recommended {
        border-color: var(--primary-red);
        background: linear-gradient(to bottom, #FFF5F5, white);
        transform: scale(1);
        position: relative;
    }
    
    .plan-recommended::before {
        content: "おすすめ";
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--primary-red);
        color: white;
        padding: 5px 20px;
        border-radius: 14px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1px;
        box-shadow: 0 2px 10px rgba(229, 57, 53, 0.3);
        z-index: 1;
    }
    
    .plan-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .plan-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .plan-name {
        font-size: 20px;
        font-weight: 900;
        text-align: center;
        margin-bottom: 8px;
        color: var(--text-dark);
    }
    
    .plan-description {
        font-size: 11px;
        color: var(--text-gray);
        text-align: center;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .plan-features {
        border-top: 1px solid #f0f0f0;
        padding-top: 15px;
        margin-top: 15px;
    }
    
    .plan-feature {
        display: flex;
        align-items: flex-start;
        font-size: 12px;
        padding: 8px 0;
        color: var(--text-dark);
        line-height: 1.4;
    }
    
    .plan-feature:not(:last-child) {
        border-bottom: 1px solid #f5f5f5;
    }
    
    .feature-icon {
        color: var(--primary-red);
        margin-right: 8px;
        flex-shrink: 0;
        font-size: 14px;
    }
    
    .feature-disabled {
        color: #999;
        opacity: 0.6;
    }
    
    .feature-disabled .feature-icon {
        color: #ccc;
    }
    
    .plan-badge {
        display: inline-block;
        background: var(--lighter-red-bg);
        color: var(--primary-red);
        padding: 4px 12px;
        border-radius: 12px;
        font-size: 10px;
        font-weight: 700;
        margin: 10px auto 0;
        text-align: center;
    }
    
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.faq-subtitle {
    font-size: 18px;
    color: var(--text-gray);
}

/* FAQ リスト */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.1);
}

/* 質問部分 */
.faq-question-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.faq-q {
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.faq-question {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

/* 回答部分 */
.faq-answer-wrapper {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.faq-a {
    width: 40px;
    height: 40px;
    background: #F0F0F0;
    color: var(--text-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.faq-answer {
    flex: 1;
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
    padding-top: 8px;
}

.faq-note {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    color: #999;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .faq-section {
        padding: 30px 15px;
        background: #f8f9fa;
    }
    
    .faq-section .container {
        padding: 0;
    }
    
    .faq-header {
        text-align: center;
        margin-bottom: 25px;
    }
    
    .faq-header .section-badge {
        display: inline-block;
        background: var(--lighter-red-bg);
        color: var(--primary-red);
        padding: 5px 20px;
        border-radius: 15px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }
    
    .faq-title {
        font-size: 22px;
        font-weight: 900;
        color: var(--text-dark);
        margin-bottom: 8px;
    }
    
    .faq-subtitle {
        font-size: 13px;
        color: var(--text-gray);
        line-height: 1.5;
    }
    
    .faq-list {
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
        max-width: 100%;
    }
    
    .faq-item {
        background: white;
        border-radius: 12px;
        padding: 18px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        border-left: 3px solid var(--primary-red);
        transition: all 0.3s ease;
    }
    
    .faq-item:active {
        transform: scale(0.98);
        box-shadow: 0 1px 5px rgba(0,0,0,0.1);
    }
    
    .faq-item:hover {
        transform: none;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
    
    .faq-question-wrapper {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .faq-q {
        width: 32px;
        height: 32px;
        background: var(--primary-red);
        color: white;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 14px;
        flex-shrink: 0;
    }
    
    .faq-question {
        font-size: 15px;
        font-weight: 700;
        color: var(--text-dark);
        line-height: 1.4;
        margin: 0;
        padding-top: 4px;
    }
    
    .faq-answer-wrapper {
        display: flex;
        gap: 12px;
        align-items: flex-start;
    }
    
    .faq-a {
        width: 32px;
        height: 32px;
        background: var(--lighter-red-bg);
        color: var(--primary-red);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 14px;
        flex-shrink: 0;
    }
    
    .faq-answer {
        font-size: 13px;
        color: var(--text-gray);
        line-height: 1.6;
        margin: 0;
        padding-top: 4px;
        flex: 1;
    }
    
    .faq-note {
        display: inline-block;
        margin-top: 15px;
        padding: 8px 12px;
        background: var(--lighter-red-bg);
        border-radius: 8px;
        font-size: 11px;
        color: var(--text-gray);
        line-height: 1.4;
    }
}


/* Story Section */
.story {
    position: relative;
    padding: 120px 0;
    background-image: url('images/story-bg.jpg');
    background-size: cover;
    background-position: center;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.story-bg-image {
    display: none;
}

.story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 60px 40px;
}

.story-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 50px;
    color: var(--text-dark);
    position: relative;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.story-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-red);
}

.story-text {
    font-size: 18px;
    line-height: 2.2;
    color: var(--text-dark);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.9);
}

.story-text br {
    display: block;
    content: "";
    margin: 8px 0;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .story {
        padding: 80px 20px;
        min-height: 500px;
        background-position: 82% center;
        background-size: auto 120%;
    }
    
    .story-content {
        padding: 40px 20px;
    }
    
    .story-title {
        font-size: 28px;
        margin-bottom: 35px;
    }
    
    .story-text {
        font-size: 15px;
        line-height: 2;
    }
}

/* CTA Action Button Styles */
.cta-action-button {
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

a.cta-action-button {
    color: white;
    text-decoration: none;
}

.cta-action-button:hover {
    background: var(--primary-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 57, 53, 0.3);
}

.btn-arrow {
    font-size: 18px;
    transition: transform 0.3s;
}

.cta-action-button:hover .btn-arrow {
    transform: translateX(5px);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s;
}

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

.modal-content {
    background-color: white;
    margin: 50px auto;
    padding: 40px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideUp 0.3s;
}

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

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--primary-red);
}

.modal-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.modal-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.application-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group .required {
    color: var(--primary-red);
}

.form-group input,
.form-group select {
    padding: 12px 15px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}

.checkbox-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-text {
    color: var(--text-gray);
    font-weight: 500;
}

.submit-button {
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.submit-button:hover {
    background: var(--primary-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.3);
}

/* Footer CTA */
.footer-cta {
    padding: 80px 0;
    background: var(--primary-red-dark);
    text-align: center;
}

.footer-cta-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
}

.footer-cta-btn {
    background: var(--white);
    color: var(--primary-red);
    font-size: 20px;
    padding: 16px 40px;
}

.footer-cta-btn:hover {
    background: var(--lighter-red-bg);
}

/* =============================================
   RESPONSIVE DESIGN - MOBILE OPTIMIZATION
   ============================================= */

@media (max-width: 768px) {
    /* Global Mobile Styles */
    * {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    section {
        padding: 40px 0;
    }
    
    /* Header Mobile */
    .header {
        padding: 10px 0;
    }
    
    .header-content {
        padding: 0 15px;
        height: 60px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .nav {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
        padding: 5px;
        color: var(--primary-red);
    }
    
    .mobile-menu {
        display: block;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .mobile-menu.active {
        transform: translateY(0);
    }
    
    .mobile-nav {
        padding: 15px;
    }
    
    .mobile-nav-link {
        padding: 12px 15px;
        display: block;
        color: var(--text-dark);
        text-decoration: none;
        border-bottom: 1px solid #eee;
        transition: background 0.2s ease;
    }
    
    .mobile-nav-link:hover {
        background: var(--lighter-red-bg);
    }
    
    .mobile-cta {
        width: 100%;
        margin-top: 15px;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* Special CTA Section Mobile */
    .special-cta-section {
        padding: 30px 0;
        background: #f8f9fa;
    }
    
    .special-cta-section .container {
        padding: 0;
    }
    
    .cta-split-container {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    
    .cta-card {
        max-width: 100%;
        width: 100%;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    
    .cta-card:hover {
        transform: none;
    }
    
    .cta-image-wrapper {
        height: 180px;
        position: relative;
    }
    
    .cta-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .cta-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        padding: 6px 12px;
        background: rgba(229, 57, 53, 0.95);
        color: white;
        border-radius: 20px;
        font-size: 11px;
        font-weight: 700;
        backdrop-filter: blur(10px);
    }
    
    .enterprise-card .cta-badge {
        background: rgba(229, 57, 53, 0.95);
    }
    
    .cta-content {
        padding: 20px;
        background: white;
    }
    
    .cta-title {
        font-size: 20px;
        font-weight: 900;
        color: var(--text-dark);
        margin-bottom: 10px;
        line-height: 1.3;
    }
    
    .cta-subtitle {
        font-size: 13px;
        color: var(--text-gray);
        margin-bottom: 15px;
    }
    
    .cta-description {
        font-size: 13px;
        line-height: 1.6;
        color: var(--text-dark);
        margin-bottom: 15px;
    }
    
    .cta-highlight {
        color: var(--primary-red);
        font-weight: 700;
        font-size: 20px;
        display: inline-block;
        margin: 0 3px;
    }
    
    .cta-benefits {
        list-style: none;
        padding: 0;
        margin: 0 0 20px 0;
    }
    
    .cta-benefit-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 0;
        font-size: 13px;
        color: var(--text-dark);
    }
    
    .cta-benefit-item::before {
        content: "✓";
        display: inline-block;
        width: 20px;
        height: 20px;
        background: var(--lighter-red-bg);
        color: var(--primary-red);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 700;
        flex-shrink: 0;
    }
    
    .cta-action-button {
        width: 100%;
        padding: 14px 20px;
        background: var(--primary-red);
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 15px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 3px 10px rgba(229, 57, 53, 0.3);
    }
    
    .cta-action-button:hover {
        background: var(--primary-red-hover);
        transform: translateY(-1px);
        box-shadow: 0 5px 15px rgba(229, 57, 53, 0.4);
    }
    
    /* Statistics Section Mobile */
    .statistics {
        padding: 40px 15px;
        background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.98) 100%);
    }
    
    .statistics .container {
        padding: 0;
    }
    
    .statistics::after {
        display: none;
    }
    
    .statistics .section-title {
        font-size: 20px;
        line-height: 1.5;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .crisis-number {
        font-size: 28px;
        display: block;
        margin: 5px 0;
    }
    
    .crisis-subtitle {
        font-size: 14px;
        margin-top: 15px;
        margin-bottom: 30px;
        letter-spacing: 1px;
    }
    
    .crisis-subtitle::before,
    .crisis-subtitle::after {
        font-size: 12px;
        margin: 0 8px;
    }
    
    /* Stats Grid Mobile */
    .stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-top: 30px;
    }
    
    .stat-card {
        background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(20,0,0,0.8) 100%);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 100, 100, 0.3);
        padding: 20px 15px;
        border-radius: 12px;
        text-align: center;
        box-shadow: 
            inset 0 -2px 10px rgba(255, 0, 0, 0.1),
            0 5px 20px rgba(0, 0, 0, 0.5);
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .stat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, 
            transparent 0%, 
            rgba(255, 0, 0, 0.8) 50%, 
            transparent 100%);
        animation: scan-line 4s linear infinite;
    }
    
    @keyframes scan-line {
        0% {
            left: -100%;
        }
        25% {
            left: 100%;
        }
        100% {
            left: 100%;
        }
    }
    
    .stat-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at center, transparent 0%, rgba(255, 0, 0, 0.05) 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }
    
    .stat-card:active {
        transform: scale(0.98);
        box-shadow: 
            inset 0 -2px 10px rgba(255, 0, 0, 0.2),
            0 3px 15px rgba(0, 0, 0, 0.6);
    }
    
    .stat-card:active::after {
        opacity: 1;
    }
    
    .stat-number {
        font-size: 24px;
        font-weight: 900;
        background: linear-gradient(135deg, #FF8888 0%, #FF4444 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 8px;
        line-height: 1.2;
        filter: drop-shadow(0 1px 5px rgba(255, 0, 0, 0.3));
        animation: glow-pulse 2s ease-in-out infinite;
    }
    
    @keyframes glow-pulse {
        0%, 100% {
            filter: drop-shadow(0 1px 5px rgba(255, 0, 0, 0.3));
            transform: scale(1);
        }
        50% {
            filter: drop-shadow(0 2px 10px rgba(255, 0, 0, 0.6));
            transform: scale(1.02);
        }
    }
    
    .stat-label {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.9);
        font-weight: 600;
        line-height: 1.3;
        margin-bottom: 5px;
    }
    
    .stat-description {
        font-size: 10px;
        color: rgba(255, 180, 180, 0.7);
        margin-top: 5px;
        line-height: 1.3;
        font-style: normal;
    }
    
    /* Problem Section Mobile */
    .problem {
        padding: 40px 15px;
    }
    
    .problem .container {
        padding: 0;
    }
    
    .problem .section-title {
        font-size: 20px;
        line-height: 1.5;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .mobile-br {
        display: inline;
    }
    
    .problem-content {
        flex-direction: column;
        gap: 30px;
        margin-top: 0;
    }
    
    .problem-image {
        width: 240px;
        height: auto;
        margin: 0 auto;
        order: -1;  /* 画像を最初に配置 */
    }
    
    .problem-list {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .problem-item {
        padding: 15px 10px;
        gap: 12px;
        border-bottom: 1px solid rgba(0,0,0,0.08);
    }
    
    .problem-item:last-child {
        border-bottom: none;
    }
    
    .problem-item i {
        font-size: 20px;
        color: var(--primary-red);
    }
    
    .problem-item span {
        font-size: 14px;
        line-height: 1.5;
        flex: 1;
    }
    
    .empathy-phrase {
        font-size: 16px;
        margin-top: 25px;
        padding: 20px 15px;
        background: var(--lighter-red-bg);
        border-radius: 10px;
        line-height: 1.6;
    }
    
    .empathy-phrase .emphasis {
        font-size: 18px;
        display: block;
        margin-top: 5px;
    }
    
    /* Solution Section Mobile */
    .solution {
        padding: 40px 15px;
        background: var(--lighter-red-bg);
    }
    
    .solution .container {
        padding: 0;
    }
    
    .solution .section-title {
        font-size: 20px;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .section-description {
        font-size: 14px;
        line-height: 1.6;
        color: var(--text-gray);
        margin-top: 10px;
        padding: 0 10px;
    }
    
    .solution-content {
        flex-direction: column;
        gap: 30px;
        margin-top: 0;
    }
    
    .solution-main-image {
        width: 100%;
        max-width: 320px;
        height: auto;
        margin: 0 auto;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        order: 0; /* 画像をタイトルの後に配置 */
    }
    
    .solution-points {
        width: 100%;
    }
    
    .solution-list {
        padding: 0;
        margin: 0;
    }
    
    .solution-point {
        flex-direction: row;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 20px;
        padding: 20px 15px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        border-left: 3px solid var(--primary-red);
    }
    
    .solution-point:hover {
        transform: none;
        box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    }
    
    .solution-point::before {
        display: none;
    }
    
    .point-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
        flex-shrink: 0;
        background: var(--primary-red);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-weight: 700;
        box-shadow: 0 2px 5px rgba(229, 57, 53, 0.3);
    }
    
    .point-content {
        flex: 1;
    }
    
    .point-content strong {
        font-size: 16px;
        margin-bottom: 5px;
        display: block;
        color: var(--text-dark);
    }
    
    .point-content p {
        font-size: 13px;
        line-height: 1.5;
        color: var(--text-gray);
        margin: 0;
    }
    
    /* Results Section Mobile */
    .results {
        padding: 40px 15px;
    }
    
    .results .container {
        padding: 0;
    }
    
    .results-header {
        text-align: center;
        margin-bottom: 5px;
    }
    
    .results-badge {
        font-size: 12px;
        padding: 5px 15px;
    }
    
    .results .section-title {
        font-size: 24px;
        margin: 15px 0 10px;
    }
    
    /* results-header内の満足度 */
    .results-header .showcase-center {
        display: flex;
        justify-content: center;
        margin: 15px 0;
    }
    
    .results-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
        color: var(--text-gray);
    }
    
    /* 画像アイテムを2x2グリッドで配置 */
    .results-showcase {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 0 10px;
        margin: 0 auto;
    }
    
    /* 画像グリッドラッパー */
    .showcase-item {
        transform: none;
    }
    
    .showcase-item:hover {
        transform: none;
    }
    
    /* 画像アイテムのスタイル */
    .showcase-item:not(.showcase-center) {
        display: block;
        background: white;
        border-radius: 8px;
        padding: 8px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    }
    
    .showcase-image {
        width: 100%;
        height: 100px;
        object-fit: cover;
        border-radius: 6px;
        margin-bottom: 6px;
    }
    
    .showcase-caption {
        font-size: 10px;
        font-weight: 600;
        color: var(--text-dark);
        text-align: center;
        line-height: 1.2;
    }
    
    .satisfaction-laurel {
        width: 160px;
        height: 160px;
    }
    
    .score-label {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .score-value {
        margin-bottom: 8px;
    }
    
    .score-number {
        font-size: 52px;
    }
    
    .score-percent {
        font-size: 26px;
    }
    
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .result-card {
        padding: 25px;
    }
    
    .result-number {
        font-size: 32px;
    }
    
    .result-label {
        font-size: 14px;
    }
    
    .result-description {
        font-size: 12px;
    }
    
    /* Features Section Mobile */
    .features {
        padding: 40px 15px;
    }
    
    .features .container {
        padding: 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon-wrap {
        width: 60px;
        height: 60px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .feature-description {
        font-size: 14px;
    }
    
    /* Comparison Section Mobile */
    .comparison {
        padding: 40px 15px;
        background: #f8f9fa;
    }
    
    .comparison .container {
        padding: 0;
    }
    
    .comparison .section-header {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .comparison .section-badge {
        display: inline-block;
        background: var(--lighter-red-bg);
        color: var(--primary-red);
        padding: 6px 20px;
        border-radius: 20px;
        font-size: 11px;
        font-weight: 700;
        margin-bottom: 15px;
        letter-spacing: 2px;
    }
    
    .comparison .section-title {
        font-size: 22px;
        font-weight: 900;
        color: var(--text-dark);
        margin-bottom: 10px;
        line-height: 1.3;
    }
    
    .comparison .section-description {
        font-size: 13px;
        color: var(--text-gray);
        line-height: 1.6;
        padding: 0 10px;
    }
    
    .comparison-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0;
        padding: 0;
        background: white;
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }
    
    .comparison-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 13px;
    }
    
    .comparison-table thead {
        background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
        border-bottom: 2px solid var(--lighter-red-bg);
    }
    
    .comparison-table th {
        padding: 15px 10px;
        text-align: center;
        font-weight: 700;
        color: var(--text-dark);
        font-size: 14px;
        white-space: nowrap;
    }
    
    .comparison-table th:first-child {
        text-align: left;
        padding-left: 15px;
    }
    
    .comparison-table th.highlight {
        background: var(--lighter-red-bg);
        color: var(--primary-red);
        position: relative;
    }
    
    .comparison-table tbody tr {
        border-bottom: 1px solid #f0f0f0;
    }
    
    .comparison-table tbody tr:hover {
        background: #fafafa;
    }
    
    .comparison-table td {
        padding: 15px 10px;
        text-align: center;
        color: var(--text-dark);
    }
    
    .comparison-table td:first-child {
        text-align: left;
        padding-left: 15px;
        font-weight: 600;
        color: var(--text-dark);
        font-size: 12px;
    }
    
    .comparison-table .check {
        color: var(--primary-red);
        font-size: 20px;
        font-weight: 700;
    }
    
    .comparison-table .triangle {
        color: #FFC107;
        font-size: 20px;
    }
    
    .comparison-table .cross {
        color: #999;
        font-size: 18px;
    }
    
    /* CareSpace列の強調 */
    .comparison-table td:nth-child(2) {
        background: rgba(229, 57, 53, 0.03);
        font-weight: 600;
        position: relative;
    }
    
    .comparison-table th:nth-child(2) {
        background: var(--lighter-red-bg);
        color: var(--primary-red);
    }
    
    /* アイコンアニメーション */
    @keyframes icon-bounce {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.2); }
    }
    
    .comparison-table .check {
        display: inline-block;
        animation: icon-bounce 2s ease-in-out infinite;
    }
    
    /* スクロールヒント */
    .comparison-table-wrapper::after {
        content: "→ スクロールで詳細を確認";
        position: absolute;
        bottom: 10px;
        right: 10px;
        background: rgba(0,0,0,0.7);
        color: white;
        padding: 4px 10px;
        border-radius: 15px;
        font-size: 10px;
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .comparison-table-wrapper:hover::after {
        opacity: 1;
    }
    
    /* Hope Section Mobile */
    body .hope-section {
        padding: 40px 15px;
        background-image: url('images/hope-bg.jpg');
        background-position: 70% center;
        background-size: cover;
        background-repeat: no-repeat;
        position: relative;
        min-height: 500px;
    }
    
    .hope-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, 
            rgba(255, 255, 255, 0.5) 0%,
            rgba(255, 255, 255, 0.75) 30%,
            rgba(255, 255, 255, 0.9) 60%,
            rgba(255, 255, 255, 0.95) 100%);
        z-index: 1;
    }
    
    .hope-section .container {
        padding: 0;
        position: relative;
        z-index: 2;
    }
    
    .hope-content {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 16px;
        padding: 30px 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
    }
    
    .hope-title {
        font-size: 24px;
        color: var(--text-dark);
        margin-bottom: 20px;
        font-weight: 900;
    }
    
    .hope-text {
        font-size: 14px;
        line-height: 1.8;
        color: var(--text-dark);
    }
    
    .hope-text strong {
        color: var(--primary-red);
        font-weight: 700;
    }
    
    /* Simple Steps Mobile */
    .simple-steps-section {
        padding: 30px 15px;
        background: white;
    }
    
    .simple-steps-section .container {
        padding: 0;
    }
    
    .simple-steps-section .section-title {
        font-size: 20px;
        text-align: center;
        margin-bottom: 25px;
        color: var(--text-dark);
    }
    
    .steps-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        padding: 15px 10px 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .step-item {
        flex: 1;
        min-width: 100px;
        max-width: 110px;
        padding: 20px 10px;
        background: white;
        border: 1px solid var(--border-color);
        border-radius: 10px;
        text-align: center;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .step-item:hover {
        transform: none;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
    
    .step-number {
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        display: inline-flex;
        width: 35px;
        height: 35px;
        background: var(--primary-red);
        color: white;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        font-weight: 700;
        box-shadow: 0 2px 5px rgba(229, 57, 53, 0.3);
        border: 3px solid white;
    }
    
    .step-icon {
        font-size: 32px;
        margin-bottom: 10px;
        margin-top: 5px;
        opacity: 0.9;
    }
    
    .step-title {
        font-size: 13px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 5px;
        line-height: 1.2;
    }
    
    .step-description {
        font-size: 10px;
        color: var(--text-gray);
        line-height: 1.3;
    }
    
    .step-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: var(--primary-red);
        flex-shrink: 0;
        margin: 0 -8px;
        padding-top: 20px;
        opacity: 0.6;
    }
    
    .step-cta {
        text-align: center;
        margin-top: 25px;
        padding: 0 20px;
    }
    
    .step-cta-button {
        display: inline-block;
        padding: 12px 30px;
        background: var(--primary-red);
        color: white;
        text-decoration: none;
        border-radius: 25px;
        font-size: 14px;
        font-weight: 700;
        transition: all 0.3s ease;
        box-shadow: 0 3px 10px rgba(229, 57, 53, 0.3);
    }
    
    .step-cta-button:hover {
        background: var(--primary-red-hover);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(229, 57, 53, 0.4);
    }
    
    /* Testimonial Section Mobile */
    .testimonial {
        padding: 40px 0;
        background: #f8f9fa;
    }
    
    .testimonial .container {
        padding: 0;
    }
    
    .testimonial .section-title {
        font-size: 22px;
        text-align: center;
        margin-bottom: 25px;
        padding: 0 15px;
    }
    
    .testimonial-slider {
        position: relative;
        padding: 0 50px;
        overflow: visible;
    }
    
    .testimonial-card {
        padding: 25px 20px;
        background: white;
        border-radius: 12px;
        margin: 0 15px;
        box-shadow: 0 3px 15px rgba(0,0,0,0.1);
        min-height: auto;
        border-left: 4px solid var(--primary-red);
    }
    
    .testimonial-card::before {
        display: none;
    }
    
    .testimonial-header {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .user-photo {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid var(--lighter-red-bg);
    }
    
    .user-info {
        flex: 1;
    }
    
    .user-name {
        font-size: 14px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 2px;
    }
    
    .user-role {
        font-size: 11px;
        color: var(--text-gray);
        line-height: 1.3;
    }
    
    .testimonial-body {
        padding: 0;
    }
    
    .testimonial-title {
        font-size: 16px;
        font-weight: 700;
        color: var(--primary-red);
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .testimonial-title::before {
        content: "✓";
        display: inline-block;
        width: 24px;
        height: 24px;
        background: var(--primary-red);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        flex-shrink: 0;
    }
    
    .testimonial-text {
        font-size: 13px;
        line-height: 1.7;
        color: var(--text-dark);
        position: relative;
        padding: 0;
    }
    
    .testimonial-text::before {
        display: none;
    }
    
    .testimonial-text .highlight-red {
        background: rgba(229, 57, 53, 0.1);
        color: var(--primary-red);
        padding: 2px 4px;
        border-radius: 3px;
        font-weight: 600;
    }
    
    .testimonial-text .highlight-blue {
        background: rgba(33, 150, 243, 0.1);
        color: #2196F3;
        padding: 2px 4px;
        border-radius: 3px;
        font-weight: 600;
    }
    
    .testimonial-text .highlight-yellow {
        background: rgba(255, 193, 7, 0.1);
        color: #F57C00;
        padding: 2px 4px;
        border-radius: 3px;
        font-weight: 600;
    }
    
    .testimonial-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        background: white;
        border: 2px solid var(--lighter-red-bg);
        border-radius: 50%;
        font-size: 20px;
        color: var(--primary-red);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        z-index: 10;
        transition: all 0.3s ease;
    }
    
    .testimonial-btn:hover {
        background: var(--primary-red);
        color: white;
        border-color: var(--primary-red);
        transform: translateY(-50%) scale(1.1);
    }
    
    .testimonial-btn.prev {
        left: 5px;
    }
    
    .testimonial-btn.next {
        right: 5px;
    }
    
    .testimonial-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
    }
    
    .testimonial-dots .dot {
        width: 8px;
        height: 8px;
        background: #ddd;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .testimonial-dots .dot.active {
        width: 24px;
        background: var(--primary-red);
        border-radius: 4px;
    }
    
    /* Awards Mobile */
    .awards-simple {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .award-items {
        flex-direction: column;
        gap: 15px;
    }
    
    .award-item {
        justify-content: center;
        text-align: center;
    }
    
    .award-text {
        font-size: 14px;
    }
    
    /* Modal Mobile */
    .modal-content {
        margin: 20px auto;
        padding: 30px 20px;
        width: 95%;
    }
    
    .modal-title {
        font-size: 24px;
    }
    
    .modal-subtitle {
        font-size: 14px;
    }
    
    .form-group label {
        font-size: 13px;
    }
    
    .form-group input,
    .form-group select {
        font-size: 14px;
        padding: 10px 12px;
    }
    
    .submit-button {
        font-size: 16px;
        padding: 14px 28px;
    }
    
    /* Footer CTA Mobile */
    .footer-cta {
        padding: 40px 15px;
    }
    
    .footer-cta .container {
        padding: 0;
    }
    
    .footer-cta-title {
        font-size: 24px;
    }
    
    .footer-cta-btn {
        font-size: 16px;
        padding: 14px 30px;
    }
}

/* Tablet Optimization */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Special CTA Section Tablet */
    .cta-split-container {
        gap: 20px;
    }
    
    .cta-card {
        max-width: calc(50% - 10px);
    }
    
    /* Features Grid Tablet */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Results Grid Tablet */
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Comparison Table Tablet */
    .comparison-table {
        font-size: 14px;
    }
    
    /* Plans Grid Tablet */
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Special Offer Grid Tablet */
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.cta-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

/* CTA Images */
.cta-image-wrapper {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.cta-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Content */
.cta-content {
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cta-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    width: fit-content;
}

.enterprise-card .cta-badge {
    background: var(--light-red-bg);
    color: var(--primary-red);
}

.free-badge {
    background: #E8F5E9;
    color: #4CAF50;
}

.cta-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.highlight-discount {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 18px;
}

.highlight-free {
    color: #4CAF50;
    font-weight: 700;
}

.cta-benefits {
    list-style: none;
    margin-bottom: 40px;
    flex: 1;
}

.cta-benefits li {
    padding: 12px 0;
    color: var(--text-gray);
    font-size: 15px;
    border-bottom: 1px solid var(--border-color);
}

.cta-benefits li:last-child {
    border-bottom: none;
}

.cta-action-button {
    width: 100%;
    padding: 18px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.enterprise-btn {
    background: var(--primary-red);
    color: var(--white);
}

.enterprise-btn:hover {
    background: var(--primary-red-hover);
    transform: scale(1.02);
}

.free-btn {
    background: #4CAF50;
    color: var(--white);
}

.free-btn:hover {
    background: #66BB6A;
    transform: scale(1.02);
}

.btn-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.cta-action-button:hover .btn-arrow {
    transform: translateX(5px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu.active {
        display: block;
    }

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

    .hero-title {
        font-size: 22px;
        white-space: nowrap;
        overflow: visible;
    }

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

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

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

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

    .strengths-grid .strength-card:nth-child(4),
    .strengths-grid .strength-card:nth-child(5) {
        grid-column: span 1;
    }

    .flow-cards {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .interview-cards {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 14px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px;
    }

    .mobile-br {
        display: block;
    }
    
    /* CTA Section Mobile */
    .cta-split-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .cta-content {
        padding: 30px 20px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-description {
        font-size: 14px;
    }
    
    .cta-benefits {
        margin-bottom: 30px;
    }
    
    .cta-benefits li {
        padding: 10px 0;
        font-size: 14px;
    }
    
    /* Hope Section Mobile - Removed duplicate styles */
    
    .hope-highlight {
        font-size: 28px;
    }
    
    .hope-cta-button {
        padding: 16px 30px;
        font-size: 16px;
    }
}

@media (min-width: 769px) {
    .mobile-br {
        display: none;
    }
}