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

:root {
    --primary-color: #51b5bc;
    --secondary-color: #41a5ac;
    --accent-color: #7cc5ca;
    --success-color: #51cf66;
    --warning-color: #ffd43b;
    --text-dark: #333333;
    --text-light: #666666;
    --text-gray: #999999;
    --bg-light: #f8fafb;
    --bg-section: #f0f6f7;
    --white: #ffffff;
    --border-color: #e5e5e5;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.12);
    --gradient-primary: linear-gradient(135deg, #51b5bc 0%, #41a5ac 100%);
    --gradient-light: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height, 80px); /* ヘッダー分のオフセット */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans JP', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    font-size: 16px;
}

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

.pc-only {
	display: block;
}
.sp-only {
	display: none;
}

@media screen and (max-width: 768px) {
	.pc-only {
		display: none;
	}
	.sp-only {
		display: block;
	}
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

/* ヘッダーロゴ */
.logo-image {
    height: 50px;
    width: auto;
    max-width: 350px;
    object-fit: contain;
    transform: scale(1.4);
    transform-origin: left center;
    margin: 10px 0;
}

/* メインロゴ（ヒーローセクション） */
.hero-logo {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 0;
    width: 100%;
}

.main-logo-image {
    max-height: 180px;
    object-fit: contain;
    margin: 0px auto 0px auto;
}

/* フッターロゴ */
.footer-logo-image {
    height: 120px;
    width: auto;
    max-width: 700px;
    object-fit: contain;
    margin-bottom: 1rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .logo-image {
        height: 30px;
        max-width: 250px;
        transform: scale(1.2);
    }
    
    .main-logo-image {
		width: 80% !important;
    }
    
    .footer-logo-image {
        height: 120px;
        max-width: 450px;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

.cta-button {
    padding: 0.75rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.cta-button:hover {
    background: var(--secondary-color);
    box-shadow: var(--shadow);
}

/* Hero Section */
.hero {
    padding: 0;
    background: var(--white);
    position: relative;
}

/* フルワイド画像 */
.width-full-image {
    /* 固定ヘッダー分の高さを確保 */
    margin-top: 80px;
}

.width-full-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Hero Video Container */
.hero-video-container {
    position: relative;
    width: 100%;
    margin-top: 80px; /* ヘッダーの高さ分 */
    height: 80vh;
    min-height: 400px;
    max-height: 800px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
}

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

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.2) 0%, 
        rgba(0, 0, 0, 0.3) 50%, 
        rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

/* Video CTA Button */
.video-cta {
    text-align: center;
    padding: 2rem 0 3rem;
    background: var(--bg-light);
}

.video-cta .primary-button {
    font-size: 1.1rem;
    padding: 1.2rem 3rem;
}

.hero-content {
    text-align: center;
    margin-bottom: 3rem;
    padding: 80px 0 30px 0;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: -1px;
}

.gradient-text {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.primary-button, .secondary-button {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.primary-button {
    background: var(--primary-color);
    color: white;
    border-radius: 4px;
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.secondary-button {
    background: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 4px;
}

.secondary-button:hover {
    background: var(--primary-color);
    color: white;
}

/* Hero Trust Section */
.hero-trust {
    margin-top: 3rem;
    text-align: center;
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 2rem;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.trust-number span {
    font-size: 1.2rem;
    font-weight: 400;
}

.trust-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

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

.ai-animation {
    position: relative;
    width: 200px;
    height: 200px;
}

.pulse-circle {
    display: none;
}

.delay-1 {
    animation-delay: 1s;
}

.delay-2 {
    animation-delay: 2s;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Recommend Section */
.recommend {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
}

.recommend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.recommend-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.recommend-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.2s ease;
    transform-origin: left;
}

.recommend-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.recommend-card:hover::before {
    transform: scaleX(1);
}

.recommend-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recommend-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: opacity(0.8);
    transition: all 0.3s ease;
}

.recommend-card:hover .recommend-icon img {
    filter: opacity(1);
    transform: scale(1.1);
}

.recommend-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.recommend-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.recommend-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.recommend-message {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 500;
    line-height: 1.8;
}

.primary-button.large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.0em;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
	.section-title {
		font-size: 2.5rem;
		text-align: center;
		margin-bottom: 1rem;
		line-height: 1.4em !important;
	}
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.2s ease;
    text-align: center;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 14px 0 0 0;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

/* Plans Section */
.plans {
    padding: 80px 0;
    background: var(--bg-light);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.plan-card {
    background: white;
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: all 0.2s;
    position: relative;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.plan-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.plan-description {
    margin-bottom: 1.5rem;
    text-align: center;
}

.plan-description p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.success-level {
    margin-bottom: 0.5rem;
}

.level-label {
    font-size: 0.8rem;
    color: var(--text-light);
    display: block;
    margin-bottom: 0.5rem;
}

.level-bar {
    width: 100%;
    height: 8px;
    background: #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.level-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

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

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price small {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-light);
    display: block;
    margin-top: 0.3rem;
}

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

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.plan-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
    padding-left: 2rem;
}

.plan-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.plan-button {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    margin-top: auto;
}

.plan-button.primary {
    background: var(--primary-color);
    color: white;
    border: none;
}

.plan-button:hover {
    background: var(--primary-color);
    color: white;
}

.plan-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Plans Note */
.plans-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
}

.plans-note p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Option Section */
.option-section {
    margin-top: 4rem;
    padding: 0 1rem;
}

.option-header-main {
    text-align: center;
    margin-bottom: 2rem;
}

.option-badge {
    display: inline-block;
    background: #f59e0b;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.option-header-main h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.option-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.option-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.option-icon svg {
    color: #f59e0b;
}

.option-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.option-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.option-features {
    margin-bottom: auto;
    flex-grow: 1;
}

.option-features ul {
    list-style: none;
    text-align: left;
    margin: 0 auto;
}

.option-features li {
    padding: 0.4rem 0;
    position: relative;
    padding-left: 1.8rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.option-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #f59e0b;
    font-weight: bold;
}

.option-price {
    margin-bottom: 1.2rem;
    margin-top: 1.5rem;
}

.option-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: #f59e0b;
    display: block;
}

.option-price .period {
    font-size: 0.9rem;
    color: var(--text-light);
    display: block;
    margin-top: 0.3rem;
}

.option-button {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.option-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.option-note-bottom {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* Lifetime Plans in Option Card */
.lifetime-card {
    background: linear-gradient(to bottom, #f8f9fa 0%, var(--white) 50%);
}

.lifetime-header-compact {
    margin-bottom: 1.5rem;
}

.lifetime-badge-small {
    display: inline-block;
    background: #6366f1;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lifetime-header-compact h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.3rem 0;
}

.lifetime-subtitle-small {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.lifetime-plans-vertical {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.lifetime-plan-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s;
}

.lifetime-plan-item:hover {
    border-color: #6366f1;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.15);
}

.lifetime-plan-item.featured {
    border-color: #6366f1;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0e7ff 100%);
}

.mini-badge {
    position: absolute;
    top: -8px;
    right: 15px;
    background: #6366f1;
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
}

.lifetime-plan-item h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.lifetime-price-compact {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.lifetime-price-compact .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.lifetime-features-compact {
    list-style: none;
    text-align: left;
}

.lifetime-features-compact li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.4;
}

.lifetime-features-compact li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6366f1;
    font-weight: bold;
    font-size: 0.9rem;
}

.plan-divider {
    height: 1px;
    background: var(--border-color);
    margin: 0 -1.5rem;
}

.lifetime-note-small {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
}

/* App Showcase Section - New Vertical Layout */
.app-showcase {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
}

/* Step Sections */
.app-step-section {
    margin: 4rem 0;
    position: relative;
}

.app-step-section:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 4rem;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
}

/* Standard Step Content (Left-Right Layout) */
.step-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step-content.reverse {
    flex-direction: row-reverse;
}

.step-info {
    flex: 1;
    text-align: left;
}

.step-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.step-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.step-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

.app-screen {
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    max-width: 350px;
}

.app-screen-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    max-height: 400px;
    object-fit: cover;
}

/* AI Results Section - Special Full-Width Layout */
.ai-results-section {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    margin: 5rem auto;
    max-width: 1200px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-content-full {
    width: 100%;
}

.step-header {
    text-align: center;
    margin-bottom: 3rem;
}

.step-header .step-number {
    margin: 0 auto 1.5rem;
}

.step-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.step-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.6;
}

/* AI Results Showcase - 2 Images Layout */
.ai-results-showcase {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.ai-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.ai-result-card.featured {
    background: linear-gradient(135deg, #f8f9ff 0%, var(--white) 100%);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.ai-result-card.featured:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.result-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.ai-result-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.ai-result-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.result-image-container {
    background: var(--white);
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.result-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s;
}

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

/* AI Features */
.ai-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 15px;
}

.ai-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    flex: 1;
    max-width: 120px;
}

.feature-icon {
    font-size: 2rem;
    display: block;
}

.feature-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Service Features */
.service-features {
    margin-top: 1.5rem;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.8rem 0;
    position: relative;
    padding-left: 2rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

@media (max-width: 768px) {
	.service-features li {
		text-align: left !important;
	}
}

/* Service Highlight */
.service-highlight {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 300px;
}

.highlight-item {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.highlight-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.highlight-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.highlight-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .step-content,
    .step-content.reverse {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .step-info {
        text-align: center;
    }
    
    .ai-results-section {
        padding: 2rem 1rem;
        margin: 3rem auto;
    }
    
    .ai-results-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ai-result-card.featured {
        padding: 1.5rem;
    }
    
    .ai-features {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .ai-feature-item {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        max-width: none;
        gap: 0.8rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.7);
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .feature-text {
        font-size: 1rem;
        font-weight: 700;
    }
    
    .step-header h3 {
        font-size: 2rem;
    }
    
    .step-info h3 {
        font-size: 1.5rem;
    }
    
    .result-icon {
        font-size: 2rem;
    }
    
    .ai-result-card h4 {
        font-size: 1.3rem;
    }
    
    .service-highlight {
        gap: 1rem;
    }
    
    .highlight-item {
        padding: 1.5rem;
    }
    
    .highlight-icon {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .ai-results-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .ai-result-card.featured {
        padding: 1rem;
    }
    
    .result-image-container {
        padding: 0.5rem;
    }
    
    .ai-features {
        gap: 1rem;
        padding: 1rem 0.5rem;
    }
    
    .ai-feature-item {
        padding: 0.8rem;
        gap: 0.5rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .feature-text {
        font-size: 0.9rem;
    }
}

/* Plans Detail Button */
.plans-detail-button-wrapper {
    text-align: center;
    margin-top: 2rem;
}

.plans-detail-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
}

.plans-detail-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 2.5rem;
    border: none;
    border-radius: 16px;
    width: 90%;
    max-width: 1100px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: modalFadeIn 0.3s;
    position: relative;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.close-modal:hover,
.close-modal:focus {
    color: #333;
    background: #f1f5f9;
}

.modal-title {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.modal-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.modal-plan-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.modal-plan-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.modal-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
}

.modal-plan-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.modal-plan-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.modal-plan-price {
    margin-bottom: 2rem;
}

.modal-plan-price .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.modal-plan-price .price small {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-light);
    display: block;
    margin-top: 0.3rem;
}

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

.modal-plan-header {
    flex-shrink: 0;
}

.modal-plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.modal-plan-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
    padding-left: 2rem;
}

.modal-plan-features li:last-child {
    border-bottom: none;
}

.modal-plan-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* ----------------------------------
   プランを2列にするためのスタイル
   ---------------------------------- */
@media screen and (min-width: 768px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .modal-plans-grid {
        /* モーダル内も同様に2カラムに固定 */
        grid-template-columns: repeat(2, 1fr);
    }
}

.modal-plan-button {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-top: auto;
    flex-shrink: 0;
}

.modal-plan-button:hover {
    background: var(--primary-color);
    color: white;
}

.modal-plan-button.primary {
    background: var(--primary-color);
    color: white;
    border: none;
}

.modal-plan-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Lifetime Plan */
.lifetime-plan {
    margin-top: 3rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 1px solid var(--border-color);
}

.lifetime-plan-section {
    position: relative;
}

.lifetime-plan-title {
    text-align: center;
    margin-bottom: 3rem;
}

.highlight-badge {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    box-shadow: 0 3px 10px rgba(99, 102, 241, 0.2);
    animation: pulse 2s infinite;
}

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

.lifetime-plan-title h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.lifetime-plan-description {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0;
}

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

.lifetime-plan-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid #e0e7ff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.06);
    transition: all 0.3s ease;
}

.lifetime-plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
    border-color: #c7d2fe;
}

.lifetime-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.lifetime-header h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.lifetime-subtitle {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.lifetime-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.lifetime-price .price {
    color: #6366f1;
    font-size: 2rem;
}

.lifetime-features {
    margin-bottom: 1.5rem;
}

.lifetime-features h4 {
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.lifetime-features ul {
    list-style: none;
    margin-bottom: 0;
}

.lifetime-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.8rem;
    color: var(--text-dark);
    border-bottom: 1px solid #f5f5f5;
    font-size: 0.9rem;
}

.lifetime-features li:last-child {
    border-bottom: none;
}

.lifetime-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6366f1;
    font-weight: bold;
    font-size: 1rem;
}

.lifetime-features li.highlight {
    color: #6366f1;
    font-weight: 500;
    background: #f0f9ff;
    margin: 0 -1rem;
    padding-left: 3rem;
    padding-right: 1rem;
}

.lifetime-note {
    margin-bottom: 1.5rem;
}

.lifetime-note p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.lifetime-button {
    width: 100%;
    padding: 0.8rem;
    background: var(--white);
    color: #6366f1;
    border: 1px solid #6366f1;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.lifetime-button.primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border: none;
}

.lifetime-button:hover {
    background: #6366f1;
    color: white;
    transform: translateY(-2px);
}

.lifetime-button.primary:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

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

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateX(10px);
}

.service-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.2;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-content p {
    color: var(--text-light);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.benefit-percentage {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: var(--text-light);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.2s ease;
}

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    background: white;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.2s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: white;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}
@media (max-width: 768px) {
	.cta-content h2 {
		font-size: 2.2rem;
		margin-bottom: 1rem;
		line-height: 1.4em !important;
	}
}

.cta-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.cta-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.submit-button {
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--primary-color);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.submit-button:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    padding: 40px 0 20px;
    background: var(--text-dark);
    color: white;
}

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

@media (max-width: 768px) {
	.footer-brand {
		text-align: center;
		margin: 0 auto;
	}
}

.footer h3, .footer h4 {
    margin-bottom: 1rem;
}

.footer ul {
    list-style: none;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-video-container {
        height: 50vh;
        min-height: 300px;
    }
    
    .hero-content {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .cta-form {
        flex-direction: column;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
    }
    
    .recommend-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .recommend-card {
        padding: 2rem;
    }
    
    .recommend-icon {
        font-size: 2.5rem;
    }
    
    .recommend-card h3 {
        font-size: 1.2rem;
    }
    
    .recommend-cta {
        padding: 2rem;
    }
    
    .recommend-message {
        font-size: 1.1rem;
    }
    
    .primary-button.large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .trust-items {
        gap: 2rem;
    }
    
    .trust-number {
        font-size: 2rem;
    }
    
    .trust-badges {
        gap: 1rem;
    }
    
    .trust-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .lifetime-plans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .lifetime-plan-card {
        padding: 2rem;
    }
    
    .lifetime-header h3 {
        font-size: 1.5rem;
    }
    
    .highlight-badge {
        font-size: 0.9rem;
        padding: 0.6rem 1.5rem;
    }
    
    .lifetime-plan-title h2 {
        font-size: 1.8rem;
    }
}

/* New Service Flow Styles */
.step-nav-container {
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.step-nav-list {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    list-style: none;
    padding: 0;
    position: relative;
}

.step-nav-item {
    flex-shrink: 0; /* アイコンが縮まないようにする */
    text-align: center;
    position: relative;
    width: 160px; /* アイコンの幅を固定 */
    margin: 0 30px; /* 矢印を表示するためのマージンを追加 */
}

.step-nav-item:not(:last-child)::after {
    content: "▶";
    position: absolute;
    left: 100%;
    top: 60px;
    width: 60px; /* マージンと同じ幅に設定 */
    text-align: center;
    margin-left: 0;
    transform: translateY(-50%);
    color: var(--border-color);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .step-nav-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem 1rem; /* 上下の間隔を広げ、左右の間隔を追加 */
    }
    .step-nav-item:not(:last-child)::after {
        display: none;
    }
    .step-nav-item {
        /* flex-basisを削除し、flex-wrapにレイアウトを任せる */
        width: 120px; /* テキストを含めた最小限の幅を確保 */
    }
    .step-nav-icon {
        width: 60px;
        height: 60px;
    }

    .step-nav-icon img {
        width: 30px;
        height: 30px;
    }

    .step-detail-inner {
        flex-direction: column;
        gap: 2rem;
    }
}

.step-nav-item a {
    text-decoration: none;
    color: var(--text-dark);
    transition: color 0.3s;
}

.step-nav-item a:hover {
    color: var(--primary-color);
}

.step-nav-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 0.5rem;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-color);
    transition: border-color 0.3s;
}

.step-nav-item a:hover .step-nav-icon {
    border-color: var(--primary-color);
}

.step-nav-icon img {
    width: 60px;
    height: 60px;
}

.step-nav-title {
    font-weight: 600;
    font-size: 1.05rem;
}

.step-detail-list {
    list-style: none;
    padding: 0;
}

.step-detail-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s, transform 0.3s;
}

.step-detail-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.step-detail-inner.reverse {
    flex-direction: row-reverse;
}

.step-detail-text {
    flex: 1;
}

.step-detail-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.step-number-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background-color: #41a5ac; /* var(--secondary-color) */
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
}

.step-detail-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.step-detail-img, .step-detail-img-grid {
    flex: 1;
    text-align: center;
}

.step-detail-img img, .step-detail-img-grid img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.step-detail-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.step-feature-list {
    list-style: none;
    padding-left: 1.5rem;
}

.step-feature-list li {
    position: relative;
    padding: 0.5rem 0;
    color: var(--text-light);
}

.step-feature-list li::before {
    content: '✓';
    position: absolute;
    left: -1.5rem;
    color: var(--primary-color);
    font-weight: bold;
}