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

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #fff;
}

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

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 100px 20px 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    background: #fff;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    background: #fff;
    bottom: -80px;
    left: -80px;
    animation-delay: 3s;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    background: #fff;
    top: 50%;
    left: 10%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease-out;
}

.badge-icon {
    font-size: 18px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.title-highlight {
    background: linear-gradient(90deg, #fff 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.pc-only {
    display: inline;
}

.hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 15px;
    border-radius: 15px;
    flex: 1;
    transition: all 0.3s ease;
}

.hero-feature-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.hero-feature-special {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 193, 7, 0.3) 100%);
    border: 2px solid rgba(255, 215, 0, 0.6);
    position: relative;
}

.hero-feature-special::before {
    content: "特典";
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ffd700;
    color: #333;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
}

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

.feature-text {
    font-size: 13px;
    text-align: center;
    line-height: 1.6;
}

.feature-text strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    margin-top: 5px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-button-primary {
    background: #fff;
    color: #667eea;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.hero-button-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.hero-button-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.hero-image-wrapper {
    position: relative;
    animation: fadeInRight 1s ease-out 0.4s both;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

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

.hero-decoration {
    position: absolute;
    background: #ffd700;
    color: #333;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    animation: bounce 2s infinite;
}

.hero-decoration-1 {
    top: -15px;
    right: -15px;
}

.hero-decoration-2 {
    bottom: -15px;
    left: -15px;
}

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

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Results Section */
.results {
    background-color: #f8f9fa;
    padding: 80px 20px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

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

.result-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.result-number {
    font-size: 48px;
    font-weight: 700;
    color: #667eea;
}

.result-number.highlight {
    color: #e74c3c;
    font-size: 56px;
}

.result-arrow {
    font-size: 48px;
    color: #333;
}

.result-description {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.result-description strong {
    color: #667eea;
    font-weight: 600;
}

/* Benefits Section */
.benefits {
    background: linear-gradient(to bottom, #fff 0%, #f8f9fa 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 15s infinite ease-in-out;
}

.benefits::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 20s infinite ease-in-out reverse;
}

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

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

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

.benefits-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #fff9e6 0%, #fff 100%);
    border: 2px solid #ffd700;
    padding: 12px 30px;
    border-radius: 50px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
    animation: fadeInDown 1s ease-out;
}

.benefits-badge-icon {
    font-size: 24px;
    animation: bounce 2s infinite;
}

.benefits-badge-text {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-main-title {
    font-size: 38px;
    font-weight: 800;
    color: #333;
    line-height: 1.4;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.benefits-title-highlight {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-title-highlight::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ffd700 0%, #f59e0b 100%);
    border-radius: 2px;
}

.benefits-description {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.pc-br {
    display: inline;
}

.benefits-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.decoration-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #ddd 50%, transparent 100%);
}

.decoration-icon {
    font-size: 20px;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.8;
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.benefit-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid #e9ecef;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: #667eea;
}

.benefit-card-highlight {
    background: linear-gradient(135deg, #fff9e6 0%, #fff 100%);
    border: 3px solid #ffd700;
}

.benefit-card-highlight::before {
    content: "おすすめ";
    position: absolute;
    top: -12px;
    right: 20px;
    background: #ffd700;
    color: #333;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.benefit-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.benefit-icon {
    font-size: 56px;
    text-align: center;
    margin-bottom: 20px;
}

.benefit-title {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 15px;
}

.benefit-description {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: left;
}

.benefit-description strong {
    color: #667eea;
    font-weight: 600;
}

.benefit-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-points li {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    padding: 8px 0 8px 25px;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.benefit-points li:last-child {
    border-bottom: none;
}

.benefit-points li:before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: 700;
    font-size: 16px;
}

.benefits-cta {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.benefits-cta-text {
    font-size: 18px;
    color: #fff;
    margin: 0;
    font-weight: 500;
}

/* Program Features Section */
.program-features {
    padding: 80px 20px;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.program-features::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

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

.features-header-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f0f4ff 0%, #fff 100%);
    border: 2px solid #667eea;
    padding: 10px 25px;
    border-radius: 50px;
    margin-bottom: 25px;
    animation: fadeInDown 1s ease-out;
}

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

.label-text {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #667eea;
}

.features-main-title {
    font-size: 38px;
    font-weight: 800;
    color: #333;
    line-height: 1.4;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.features-title-emphasis {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.features-description {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.feature-card:hover {
    border-color: #667eea;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.feature-card-primary {
    border-color: #667eea;
    background: linear-gradient(135deg, #f0f4ff 0%, #fff 100%);
}

.feature-card-accent {
    border-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4 0%, #fff 100%);
}

.feature-card-highlight {
    border-color: #ffd700;
    background: linear-gradient(135deg, #fff9e6 0%, #fff 100%);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.15);
}

.feature-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
}

.feature-card-highlight .feature-number {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.feature-icon {
    font-size: 56px;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.feature-card:hover .feature-icon {
    animation: none;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
}

.feature-description {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.feature-tag {
    display: inline-block;
    background: #f0f4ff;
    color: #667eea;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.feature-tag-special {
    background: linear-gradient(135deg, #fff9e6 0%, #fef3c7 100%);
    color: #d97706;
    border: 1px solid #ffd700;
}

/* Course Section */
.course {
    background: linear-gradient(to bottom, #f8f9fa 0%, #fff 100%);
    padding: 80px 20px;
}

.section-heading {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 3px;
    text-align: center;
    color: #667eea;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 16px;
    text-align: center;
    color: #666;
    margin-bottom: 60px;
}

.course-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.course-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    overflow: visible;
}

.course-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.25);
    border-color: #667eea;
}

.course-card-1 {
    border-top: 5px solid #4ade80;
}

.course-card-2 {
    border-top: 5px solid #667eea;
}

.course-card-3 {
    border-top: 5px solid #f59e0b;
}

.course-number {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.course-icon {
    font-size: 56px;
    text-align: center;
    margin-bottom: 20px;
}

.course-name {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 25px;
}

.course-period,
.course-format {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 15px;
    color: #555;
}

.period-icon,
.format-icon {
    font-size: 18px;
}

.course-description {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    border-left: 4px solid #667eea;
}

.course-description p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.course-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.course-features li {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    padding: 10px 0 10px 30px;
    position: relative;
    border-bottom: 1px solid #e9ecef;
}

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

.course-features li:before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
    font-size: 18px;
}

.course-requirement {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #fff3cd 0%, #fff8e1 100%);
    border-radius: 10px;
    border: 2px solid #ffc107;
    font-size: 13px;
    font-weight: 600;
    color: #856404;
}

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

.course-info-box {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
}

.course-special-offer {
    display: flex;
    gap: 25px;
    align-items: center;
    padding: 30px;
    background: linear-gradient(135deg, #fff9e6 0%, #fffbf0 100%);
    border: 3px solid #ffd700;
    border-radius: 16px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.course-special-offer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, #ffd700 0%, #ffed4e 100%);
}

.special-offer-icon {
    font-size: 56px;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

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

.special-offer-content h4 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.special-offer-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.special-offer-content strong {
    color: #d97706;
    font-weight: 700;
}

.info-row {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 30px 0;
    border-bottom: 2px solid #f0f0f0;
}

.info-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-row:first-child {
    padding-top: 0;
}

.info-icon {
    font-size: 48px;
    flex-shrink: 0;
    line-height: 1;
}

.info-content h4 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.info-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.info-content p + p {
    margin-top: 10px;
}

.info-note {
    font-size: 14px;
    color: #667eea;
    font-weight: 500;
    padding: 10px 15px;
    background: #f0f4ff;
    border-radius: 8px;
    margin-top: 15px !important;
    border-left: 3px solid #667eea;
}

/* Curriculum Section */
.curriculum {
    padding: 80px 20px;
    background-color: #fff;
}

.curriculum-course {
    margin-bottom: 80px;
}

.curriculum-course:last-child {
    margin-bottom: 0;
}

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

.curriculum-header h4 {
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 15px;
}

.curriculum-header p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.curriculum-steps {
    display: grid;
    gap: 40px;
}

.step-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.step-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.step-image {
    width: 300px;
    height: 100%;
    overflow: hidden;
}

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

.step-content {
    padding: 30px 40px 30px 0;
}

.step-label {
    display: inline-block;
    background: #667eea;
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.step-content h5 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.5;
}

.step-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

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

.step-content ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.step-content ul li:before {
    content: "\25CF";
    color: #667eea;
    position: absolute;
    left: 0;
}

/* FAQ Section */
.faq {
    background-color: #f8f9fa;
    padding: 80px 20px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.faq-question h4 {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.6;
}

.faq-toggle {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 300;
    color: #667eea;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: #667eea;
    color: #fff;
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.faq-icon-answer {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: #e7f3ff;
    color: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.faq-answer-content {
    flex: 1;
    padding-top: 6px;
}

.faq-answer-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-cta-text {
    font-size: 18px;
    color: #333;
    margin-bottom: 25px;
    font-weight: 500;
}

.faq-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.faq-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 25px;
}

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

.cta-button {
    display: inline-block;
    background: #fff;
    color: #667eea;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 30px 20px;
    text-align: center;
}

.footer p {
    font-size: 14px;
    opacity: 0.8;
}

/* Fixed CTA Bar */
.fixed-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fixed-cta-bar.show {
    transform: translateY(0);
}

.fixed-cta-bar.hidden {
    transform: translateY(100%);
}

.fixed-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 20px;
}

.fixed-cta-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.fixed-cta-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.9);
    color: #333;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    width: fit-content;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.fixed-cta-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.fixed-cta-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.fixed-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.fixed-cta-primary {
    background: #fff;
    color: #667eea;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.fixed-cta-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.fixed-cta-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.fixed-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.fixed-cta-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fixed-cta-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 60px 20px 50px;
    }

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

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

    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
    }

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

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

    .pc-only {
        display: none;
    }

    .hero-features {
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero-feature-item {
        flex-direction: row;
        justify-content: flex-start;
        padding: 15px;
        flex: 1 1 calc(50% - 10px);
        min-width: 140px;
    }

    .hero-feature-special::before {
        top: -8px;
        right: -8px;
        font-size: 10px;
        padding: 3px 10px;
    }

    .feature-icon {
        font-size: 28px;
    }

    .feature-text {
        text-align: left;
        font-size: 12px;
    }

    .feature-text strong {
        font-size: 14px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .hero-button {
        width: 100%;
        padding: 14px 30px;
        font-size: 15px;
    }

    .hero-decoration {
        font-size: 12px;
        padding: 8px 15px;
    }

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

    .result-item {
        flex-direction: column;
        gap: 20px;
    }

    .result-number {
        font-size: 36px;
    }

    .result-number.highlight {
        font-size: 42px;
    }

    .result-arrow {
        transform: rotate(90deg);
        font-size: 36px;
    }

    .features-header-label {
        padding: 8px 20px;
    }

    .label-icon {
        font-size: 18px;
    }

    .label-text {
        font-size: 12px;
    }

    .features-main-title {
        font-size: 28px;
    }

    .features-description {
        font-size: 16px;
    }

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

    .feature-card {
        padding: 30px 20px;
    }

    .feature-number {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .feature-icon {
        font-size: 48px;
    }

    .feature-title {
        font-size: 18px;
    }

    .feature-description {
        font-size: 14px;
    }

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

    .course-card {
        padding: 30px 20px;
    }

    .course-icon {
        font-size: 48px;
    }

    .course-name {
        font-size: 22px;
    }

    .course-info-box {
        padding: 30px 20px;
    }

    .info-row {
        flex-direction: column;
        gap: 15px;
        padding: 25px 0;
    }

    .info-icon {
        font-size: 40px;
    }

    .info-content h4 {
        font-size: 20px;
    }

    .info-content p {
        font-size: 15px;
    }

    .step-card {
        grid-template-columns: 1fr;
    }

    .step-image {
        width: 100%;
        height: 250px;
    }

    .step-content {
        padding: 30px 20px;
    }

    .detail-item {
        flex-direction: column;
        gap: 8px;
    }

    .detail-label {
        min-width: auto;
    }

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

    .cta-button {
        padding: 15px 35px;
        font-size: 15px;
    }

    .faq-question {
        padding: 20px;
        gap: 12px;
    }

    .faq-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .faq-question h4 {
        font-size: 16px;
    }

    .faq-toggle {
        width: 28px;
        height: 28px;
        font-size: 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }

    .faq-icon-answer {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .faq-answer-content p {
        font-size: 15px;
    }

    .faq-cta {
        padding: 30px 20px;
    }

    .faq-cta-text {
        font-size: 16px;
    }

    .faq-cta-button {
        padding: 14px 35px;
        font-size: 15px;
    }

    .benefits-header-badge {
        padding: 10px 25px;
    }

    .benefits-badge-icon {
        font-size: 20px;
    }

    .benefits-badge-text {
        font-size: 12px;
    }

    .benefits-main-title {
        font-size: 28px;
    }

    .benefits-description {
        font-size: 16px;
    }

    .pc-br {
        display: none;
    }

    .decoration-line {
        width: 50px;
    }

    .decoration-icon {
        font-size: 18px;
    }

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

    .benefit-card {
        padding: 30px 20px;
    }

    .benefit-icon {
        font-size: 48px;
    }

    .benefit-title {
        font-size: 20px;
    }

    .benefits-cta {
        padding: 25px 20px;
    }

    .benefits-cta-text {
        font-size: 16px;
    }

    .course-special-offer {
        flex-direction: column;
        padding: 25px 20px;
        text-align: center;
    }

    .special-offer-icon {
        font-size: 48px;
    }

    .special-offer-content h4 {
        font-size: 20px;
    }

    .special-offer-content p {
        font-size: 15px;
    }

    .fixed-cta-content {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px 20px;
    }

    .fixed-cta-text {
        text-align: center;
        align-items: center;
    }

    .fixed-cta-badge {
        font-size: 11px;
    }

    .fixed-cta-title {
        font-size: 14px;
    }

    .fixed-cta-buttons {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .fixed-cta-button {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }

    .fixed-cta-close {
        top: 5px;
        right: 5px;
        width: 26px;
        height: 26px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 15px 40px;
    }

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

    .hero-description {
        font-size: 15px;
    }

    .hero-features {
        gap: 10px;
    }

    .hero-feature-item {
        padding: 12px;
        flex: 1 1 100%;
    }

    .benefits-main-title {
        font-size: 24px;
    }

    .benefits-header-badge {
        padding: 8px 20px;
    }

    .benefits-badge-icon {
        font-size: 18px;
    }

    .benefits-badge-text {
        font-size: 11px;
    }

    .benefits-description {
        font-size: 15px;
    }

    .decoration-line {
        width: 40px;
    }

    .features-main-title {
        font-size: 24px;
    }

    .features-header-label {
        padding: 6px 18px;
    }

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

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

    .features-description {
        font-size: 15px;
    }

    .feature-icon {
        font-size: 44px;
    }

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

    .curriculum-header h4 {
        font-size: 22px;
    }

    .step-content h5 {
        font-size: 18px;
    }
}