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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Hiragino Sans', 'ヒラギノ角ゴ Pro W3', Meiryo, sans-serif;
    line-height: 1.7;
    color: #333;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(83, 133, 193, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
}

.nav-logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #5385c1;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #5385c1;
}

.nav-link.apply-btn {
    background: linear-gradient(135deg, #5385c1, #4a7bb7);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(83, 133, 193, 0.3);
    transition: all 0.3s ease;
}

.nav-link.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(83, 133, 193, 0.4);
    color: white;
}

/* Hero Section */
.hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8fbff 0%, #e8f4fd 25%, #d8edfa 50%, #c8e6f7 75%, #b8dff4 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(83, 133, 193, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(74, 123, 183, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(83, 133, 193, 0.04) 0%, transparent 50%);
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="medical-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(83,133,193,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23medical-grid)"/></svg>');
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

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

.hero-banner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #5385c1, transparent);
    border-radius: 2px;
}

.banner-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.banner-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease;
}

.banner-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.banner-image:hover::before {
    left: 100%;
}

.hero-cta {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(83, 133, 193, 0.3), transparent);
}

.hero-cta::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(83, 133, 193, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

/* Buttons */
.cta-button {
    display: inline-block;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-button.primary {
    background: linear-gradient(135deg, #5385c1 0%, #4a7bb7 50%, #3e6fa3 100%);
    color: white;
    padding: 22px 45px;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 
        0 12px 30px rgba(83, 133, 193, 0.4),
        0 4px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

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

.cta-button.primary:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 20px 40px rgba(83, 133, 193, 0.5),
        0 8px 25px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #5d8dc9 0%, #5284bf 50%, #4679ab 100%);
}

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

.cta-button.large {
    padding: 25px 50px;
    font-size: 1.5rem;
}

.cta-note {
    margin-top: 20px;
    font-size: 1rem;
    color: #5385c1;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.7);
    padding: 12px 24px;
    border-radius: 25px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(83, 133, 193, 0.2);
}

/* Introduction Section */
.introduction {
    padding: 80px 0;
    background: linear-gradient(to bottom, rgba(248, 251, 255, 0.8), rgba(255, 255, 255, 0.9));
    position: relative;
}

.introduction::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="intro-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(83,133,193,0.03)"/><path d="M0 25h50M25 0v50" stroke="rgba(83,133,193,0.02)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23intro-pattern)"/></svg>');
    opacity: 0.4;
}

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

.intro-headline {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c5aa0;
    line-height: 1.4;
    margin-bottom: 40px;
    position: relative;
    letter-spacing: -0.5px;
}

.intro-headline::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #5385c1, transparent);
    border-radius: 2px;
}

.intro-description {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.intro-description p {
    font-size: 1.3rem;
    color: #333;
    line-height: 1.7;
    margin: 0;
    padding: 0 20px;
    position: relative;
}

.intro-description p:first-child {
    font-weight: 500;
    color: #4a7bb7;
}

.intro-description p:last-child {
    font-size: 1.4rem;
    color: #2c5aa0;
    font-weight: 600;
}

.intro-description strong {
    background: linear-gradient(135deg, rgba(83, 133, 193, 0.1), rgba(74, 123, 183, 0.05));
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid rgba(83, 133, 193, 0.2);
    font-weight: 700;
    color: #dc143c;
}

/* Problems Section */
.problems {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a365d 0%, #2c5aa0 25%, #2d3748 50%, #1a202c 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.problems::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="problems-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.03)"/><path d="M0 30h60M30 0v60" stroke="rgba(255,255,255,0.02)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23problems-pattern)"/></svg>');
    opacity: 0.4;
}

.problems-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.problems-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    border-radius: 2px;
}

.problems-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: rgba(255, 255, 255, 0.05);
    padding: 35px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.problem-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.problem-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.problem-item:hover::before {
    left: 100%;
}

.problem-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffd700;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.problem-item:hover .problem-icon {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
    transform: scale(1.1);
}

.problem-icon svg {
    width: 30px;
    height: 30px;
}

.problem-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffd700;
    line-height: 1.3;
}

.problem-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Target Audience Section */
.target-audience {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 50%, #e8f4fd 100%);
    position: relative;
}

.target-audience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="target-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="rgba(83,133,193,0.06)"/><path d="M0 20h40M20 0v40" stroke="rgba(83,133,193,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23target-pattern)"/></svg>');
    opacity: 0.5;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.audience-card {
    background: white;
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(83, 133, 193, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    border-top: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #5385c1, #4a7bb7, #3e6fa3);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.audience-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(83, 133, 193, 0.2);
}

.audience-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(83, 133, 193, 0.1), rgba(74, 123, 183, 0.05));
    border-radius: 50%;
    border: 2px solid rgba(83, 133, 193, 0.2);
    color: #5385c1;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.audience-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(83, 133, 193, 0.2), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.audience-card:hover .audience-icon {
    transform: translateY(-8px) scale(1.15);
    background: linear-gradient(135deg, rgba(83, 133, 193, 0.15), rgba(74, 123, 183, 0.08));
    border-color: rgba(83, 133, 193, 0.4);
    box-shadow: 0 12px 35px rgba(83, 133, 193, 0.25);
}

.audience-card:hover .audience-icon::before {
    opacity: 1;
}

.audience-icon svg {
    width: 35px;
    height: 35px;
    transition: all 0.4s ease;
}

.audience-card:hover .audience-icon svg {
    transform: scale(1.1);
}

.audience-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
}

.audience-card p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8fbff, #ffffff);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #5385c1, #4a7bb7);
    border-radius: 2px;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 80px;
}

.benefit-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(83, 133, 193, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 40px;
}

.benefit-card:nth-child(even) {
    flex-direction: row-reverse;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #5385c1, #4a7bb7);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(83, 133, 193, 0.1), rgba(74, 123, 183, 0.05));
    border-radius: 50%;
    border: 2px solid rgba(83, 133, 193, 0.2);
    color: #5385c1;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.benefit-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(83, 133, 193, 0.2), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: translateY(-5px) scale(1.1);
    background: linear-gradient(135deg, rgba(83, 133, 193, 0.15), rgba(74, 123, 183, 0.08));
    border-color: rgba(83, 133, 193, 0.4);
    box-shadow: 0 8px 25px rgba(83, 133, 193, 0.2);
}

.benefit-card:hover .benefit-icon::before {
    opacity: 1;
}

.benefit-icon svg {
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon svg {
    transform: scale(1.1);
}

.benefit-content {
    flex: 1;
    text-align: left;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.benefit-card p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

/* Curriculum Section */
.curriculum {
    padding: 100px 0;
    background: #f8fbff;
}

.curriculum-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.curriculum-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #5385c1, #4a7bb7);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    position: relative;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #5385c1, #4a7bb7);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 40px;
    box-shadow: 0 5px 15px rgba(83, 133, 193, 0.3);
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #5385c1;
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

.curriculum-note {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    background: rgba(83, 133, 193, 0.1);
    border-radius: 10px;
    border-left: 4px solid #5385c1;
}

.curriculum-note p {
    color: #5385c1;
    font-weight: 600;
    margin: 0;
}

/* Future Vision Section */
.future-vision {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #e8f4fd 25%, #d8edfa 50%, #c8e6f7 75%, #b8dff4 100%);
    position: relative;
    overflow: hidden;
}

.future-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(83, 133, 193, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(74, 123, 183, 0.08) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="vision-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="rgba(83,133,193,0.04)"/><path d="M0 15h30M15 0v30" stroke="rgba(83,133,193,0.02)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23vision-pattern)"/></svg>');
    opacity: 0.6;
}

.timeline-container {
    position: relative;
    z-index: 2;
}

.vision-timeline {
    max-width: 1000px;
    margin: 80px auto 0;
    position: relative;
}

.vision-timeline::before {
    content: '';
    position: absolute;
    left: 150px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #5385c1, #4a7bb7, #3e6fa3);
    border-radius: 2px;
}

.vision-item {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
}

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

.vision-period {
    width: 120px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #5385c1;
    background: white;
    padding: 15px 10px;
    border-radius: 50px;
    border: 3px solid #5385c1;
    box-shadow: 0 8px 25px rgba(83, 133, 193, 0.2);
    position: relative;
    z-index: 3;
    margin-right: 60px;
}

.vision-period::after {
    content: '';
    position: absolute;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background: #5385c1;
    border-radius: 50%;
    box-shadow: 0 0 0 4px white, 0 0 0 8px #5385c1;
}

.vision-content {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(83, 133, 193, 0.1);
    border-left: 5px solid #5385c1;
    position: relative;
    transition: all 0.3s ease;
}

.vision-content::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid white;
}

.vision-item:hover .vision-content {
    transform: translateX(10px);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(83, 133, 193, 0.2);
}

.vision-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 15px;
    line-height: 1.3;
}

.vision-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #e8f4fd 25%, #ffffff 50%, #f0f8ff 75%, #e8f4fd 100%);
    position: relative;
    overflow-x: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pricing-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(83,133,193,0.04)"/><path d="M0 20h40M20 0v40" stroke="rgba(83,133,193,0.02)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23pricing-pattern)"/></svg>');
    opacity: 0.6;
}

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

.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 15px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
    padding: 20px 0;
    max-width: 100%;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* SOLD OUT Card */
.pricing-card.sold-out {
    background: linear-gradient(135deg, #e0e0e0, #bdbdbd);
    color: #666;
    transform: scale(0.95);
    opacity: 0.7;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    filter: grayscale(100%);
}

.sold-out-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.1) 10px,
        rgba(255, 255, 255, 0.1) 20px
    );
    border-radius: 20px;
}

.sold-out-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #dc143c;
    color: white;
    padding: 8px 20px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
    z-index: 3;
}

/* ACTIVE OFFER Card */
.pricing-card.active-offer {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 25%, #5385c1 75%, #4a7bb7 100%);
    color: white;
    transform: scale(1.0);
    box-shadow: 
        0 20px 50px rgba(83, 133, 193, 0.4),
        0 0 30px rgba(255, 107, 53, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: subtle-glow 2s ease-in-out infinite alternate;
    z-index: 2;
}

@keyframes subtle-glow {
    0% { box-shadow: 0 20px 50px rgba(83, 133, 193, 0.4), 0 0 30px rgba(255, 107, 53, 0.3); }
    100% { box-shadow: 0 25px 60px rgba(83, 133, 193, 0.5), 0 0 40px rgba(255, 107, 53, 0.4); }
}

.urgency-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #dc143c;
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 3px;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
    white-space: nowrap;
    z-index: 4;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

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

.pricing-badge.featured {
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    font-weight: 700;
}

.pricing-amount.highlight {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffff00;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin: 15px 0;
}

.pricing-spots.urgent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: rgba(220, 20, 60, 0.2);
    padding: 10px;
    border-radius: 10px;
    margin: 15px 0;
}

.remaining-count {
    font-size: 2rem;
    font-weight: 900;
    color: #ffff00;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.remaining-text {
    font-size: 1rem;
    font-weight: 600;
}

.offer-cta {
    background: rgba(220, 20, 60, 0.3);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* FUTURE OPTION Card */
.pricing-card.future-option {
    background: white;
    color: #666;
    border: 2px solid #e0e0e0;
    transform: scale(1.0);
    opacity: 0.8;
}

/* Pricing CTA Strip */
.pricing-cta-strip {
    background: linear-gradient(135deg, #dc143c 0%, #b91c3c 25%, #8b1538 50%, #dc143c 100%);
    margin: 40px -20px;
    padding: 30px 20px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.3);
    z-index: 3;
}

.pricing-cta-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="rgba(255,255,255,0.05)"/><path d="M0 15h30M15 0v30" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
    opacity: 0.4;
}

.pricing-cta-strip::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: sweep 3s ease-in-out infinite;
}

@keyframes sweep {
    0% { transform: translateX(-100%) translateY(-100%); }
    50% { transform: translateX(0%) translateY(0%); }
    100% { transform: translateX(100%) translateY(100%); }
}

.cta-strip-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.cta-strip-text {
    flex: 1;
    color: white;
}

.cta-strip-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-strip-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.cta-strip-button {
    flex-shrink: 0;
}

.cta-button.pricing-cta {
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 50%, #e6f3ff 100%);
    color: #dc143c;
    padding: 18px 35px;
    font-size: 1.2rem;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.cta-button.pricing-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg, #f8f8f8 0%, #e8f4fd 50%, #d8edfa 100%);
}

/* Hover effects handled in individual card classes above */

.pricing-badge {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding: 8px 20px;
    background: rgba(83, 133, 193, 0.1);
    border-radius: 25px;
    display: inline-block;
}

/* Remove old styles - replaced with new design system */

.pricing-period {
    font-size: 0.95rem;
    margin-bottom: 25px;
    opacity: 0.8;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #5385c1;
}

/* Hover effects for new design system */
.pricing-card.sold-out:hover {
    transform: scale(0.95);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pricing-card.active-offer:hover {
    transform: scale(1.02);
    animation: none;
    box-shadow: 
        0 30px 70px rgba(83, 133, 193, 0.5),
        0 0 50px rgba(255, 107, 53, 0.5);
}

.pricing-card.future-option:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pricing-spots {
    font-size: 0.9rem;
    opacity: 0.7;
    font-weight: 600;
}

.pricing-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.feature-icon {
    color: #5385c1;
    font-weight: 700;
    font-size: 1.2rem;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #f8fbff;
}

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

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid rgba(83, 133, 193, 0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(83, 133, 193, 0.05);
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background: #5385c1;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    transition: transform 0.3s 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: 200px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: #666;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c5aa0 0%, #5385c1 25%, #4a7bb7 50%, #3e6fa3 75%, #2c5aa0 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="professional-grid" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M 25 0 L 0 0 0 25" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="0.5"/><circle cx="12.5" cy="12.5" r="0.5" fill="rgba(255,255,255,0.06)"/></pattern></defs><rect width="100" height="100" fill="url(%23professional-grid)"/></svg>');
    opacity: 0.3;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 255, 255, 0.1);
    position: relative;
}

.cta-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    border-radius: 2px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-urgency {
    margin-top: 30px;
}

.urgency-text {
    font-size: 1.1rem;
    font-weight: 600;
}

#countdown {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
    padding: 6px 18px;
    border-radius: 25px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
        box-shadow: 
            0 4px 15px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
    50% { 
        opacity: 0.9; 
        transform: scale(1.05);
        box-shadow: 
            0 6px 20px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }
}

/* Remove old blink animation */

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #5385c1;
}

.footer-info p {
    color: #ccc;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #5385c1;
}

.footer-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #555;
    color: #999;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        padding: 100px 0 50px;
    }
    
    .hero::after {
        opacity: 0.2;
    }
    
    .banner-image {
        max-width: 900px;
        border-radius: 18px;
    }
    
    .cta-button.primary {
        padding: 20px 38px;
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .audience-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 35px;
    }
    
    .audience-card {
        padding: 40px 30px;
    }
    
    .audience-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 25px;
    }
    
    .audience-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .problems {
        padding: 80px 0;
    }
    
    .problems-title {
        font-size: 2.2rem;
        margin-bottom: 60px;
    }
    
    .problems-list {
        gap: 35px;
    }
    
    .problem-item {
        padding: 30px;
        gap: 25px;
    }
    
    .problem-icon {
        width: 55px;
        height: 55px;
    }
    
    .problem-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .problem-content h3 {
        font-size: 1.3rem;
    }
    
    .problem-content p {
        font-size: 1rem;
    }
    
    .benefits-grid {
        gap: 40px;
    }
    
    .benefit-card {
        flex-direction: column !important;
        text-align: center;
        gap: 30px;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
    }
    
    .benefit-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .benefit-content {
        text-align: center;
    }
    
    .future-vision {
        padding: 100px 0;
    }
    
    .vision-timeline::before {
        left: 60px;
    }
    
    .vision-period {
        width: 100px;
        font-size: 1.1rem;
        padding: 12px 8px;
        margin-right: 40px;
    }
    
    .vision-content {
        padding: 35px;
    }
    
    .vision-content h3 {
        font-size: 1.4rem;
    }
    
    .vision-content p {
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    .intro-headline {
        font-size: 2rem;
    }
    
    .intro-description p {
        font-size: 1.2rem;
    }
    
    .intro-description p:last-child {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .introduction {
        padding: 60px 0;
    }
    
    .intro-headline {
        font-size: 1.7rem;
        margin-bottom: 30px;
    }
    
    .intro-headline::after {
        width: 100px;
        height: 2px;
        bottom: -15px;
    }
    
    .intro-description {
        gap: 20px;
    }
    
    .intro-description p {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    
    .intro-description p:last-child {
        font-size: 1.2rem;
    }
    
    .target-audience {
        padding: 80px 0;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 60px;
    }
    
    .audience-card {
        padding: 35px 25px;
    }
    
    .audience-card:hover {
        transform: translateY(-8px);
    }
    
    .audience-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 25px;
    }
    
    .audience-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .audience-card h3 {
        font-size: 1.3rem;
        margin-bottom: 18px;
    }
    
    .audience-card p {
        font-size: 1rem;
    }
    
    .problems {
        padding: 60px 0;
    }
    
    .problems-title {
        font-size: 1.8rem;
        margin-bottom: 50px;
    }
    
    .problems-list {
        gap: 30px;
    }
    
    .problem-item {
        flex-direction: column;
        text-align: center;
        padding: 25px;
        gap: 20px;
    }
    
    .problem-item:hover {
        transform: translateY(-5px);
    }
    
    .problem-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }
    
    .problem-icon svg {
        width: 25px;
        height: 25px;
    }
    
    .problem-content h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .problem-content p {
        font-size: 0.95rem;
    }
    
    .benefits-grid {
        gap: 35px;
    }
    
    .benefit-card {
        flex-direction: column !important;
        text-align: center;
        padding: 35px 25px;
        gap: 25px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
    }
    
    .benefit-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .benefit-content h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .benefit-content p {
        font-size: 1rem;
    }
    
    .future-vision {
        padding: 80px 0;
    }
    
    .vision-timeline::before {
        display: none;
    }
    
    .vision-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 60px;
    }
    
    .vision-period {
        width: 120px;
        margin: 0 auto 25px;
    }
    
    .vision-period::after {
        display: none;
    }
    
    .vision-content {
        padding: 30px;
    }
    
    .vision-content::before {
        display: none;
    }
    
    .vision-item:hover .vision-content {
        transform: translateY(-5px);
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero {
        padding: 90px 0 40px;
    }
    
    .hero::after {
        opacity: 0.15;
    }
    
    .hero-banner::before {
        width: 80px;
        height: 3px;
        top: -15px;
    }
    
    .banner-image {
        border-radius: 15px;
        box-shadow: 
            0 15px 30px rgba(0, 0, 0, 0.12),
            0 0 0 1px rgba(255, 255, 255, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }
    
    .banner-image:hover {
        transform: translateY(-6px) scale(1.01);
    }
    
    .cta-button.primary {
        padding: 18px 35px;
        font-size: 1.1rem;
    }
    
    .cta-note {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefit-card {
        padding: 35px 25px;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .timeline-marker {
        margin: 0 auto 20px;
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .curriculum-timeline::before {
        display: none;
    }
    
    .timeline-content {
        padding: 25px;
    }
    
    .pricing .container {
        padding: 0 20px;
    }
    
    .pricing-table {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px 0;
    }
    
    .pricing-card.sold-out {
        transform: scale(0.98);
    }
    
    .pricing-card.active-offer {
        transform: scale(1.0);
    }
    
    .pricing-card.future-option {
        transform: scale(1.0);
    }
    
    .pricing-amount.highlight {
        font-size: 3rem;
    }
    
    .remaining-count {
        font-size: 1.8rem;
    }
    
    .urgency-indicator {
        top: 8px;
        right: 8px;
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    .pricing-cta-strip {
        margin: 30px -15px;
        padding: 25px 15px;
        border-radius: 12px;
    }
    
    .cta-strip-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cta-strip-text h3 {
        font-size: 1.5rem;
    }
    
    .cta-strip-text p {
        font-size: 1rem;
    }
    
    .cta-button.pricing-cta {
        padding: 16px 30px;
        font-size: 1.1rem;
    }
    
    .pricing-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .introduction {
        padding: 50px 0;
    }
    
    .intro-headline {
        font-size: 1.5rem;
        margin-bottom: 25px;
        line-height: 1.3;
    }
    
    .intro-headline::after {
        width: 80px;
        height: 2px;
        bottom: -12px;
    }
    
    .intro-description {
        gap: 18px;
    }
    
    .intro-description p {
        font-size: 1rem;
        padding: 0 5px;
    }
    
    .intro-description p:last-child {
        font-size: 1.1rem;
    }
    
    .intro-description strong {
        padding: 1px 6px;
        font-size: 0.95rem;
    }
    
    .problems {
        padding: 50px 0;
    }
    
    .problems-title {
        font-size: 1.5rem;
        margin-bottom: 40px;
        line-height: 1.3;
    }
    
    .problems-title::after {
        width: 80px;
        height: 2px;
        bottom: -15px;
    }
    
    .problems-list {
        gap: 25px;
    }
    
    .problem-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
        border-radius: 12px;
    }
    
    .problem-item:hover {
        transform: translateY(-3px);
    }
    
    .problem-icon {
        width: 45px;
        height: 45px;
        margin: 0 auto;
    }
    
    .problem-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .problem-content h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
        line-height: 1.2;
    }
    
    .problem-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .benefits-grid {
        gap: 30px;
    }
    
    .benefit-card {
        flex-direction: column !important;
        text-align: center;
        padding: 30px 20px;
        gap: 20px;
        border-radius: 15px;
    }
    
    .benefit-icon {
        width: 55px;
        height: 55px;
    }
    
    .benefit-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .benefit-content h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
        line-height: 1.2;
    }
    
    .benefit-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .future-vision {
        padding: 60px 0;
    }
    
    .vision-timeline {
        margin-top: 50px;
    }
    
    .vision-item {
        margin-bottom: 40px;
    }
    
    .vision-period {
        width: 100px;
        font-size: 1rem;
        padding: 10px 8px;
        margin-bottom: 20px;
    }
    
    .vision-content {
        padding: 25px;
        border-radius: 15px;
    }
    
    .vision-content h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
        line-height: 1.2;
    }
    
    .vision-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .target-audience {
        padding: 60px 0;
    }
    
    .audience-grid {
        margin-top: 50px;
        gap: 25px;
    }
    
    .audience-card {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .audience-card:hover {
        transform: translateY(-6px);
    }
    
    .audience-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 20px;
    }
    
    .audience-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .audience-card h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .audience-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav-logo h1 {
        font-size: 1.3rem;
    }
    
    .hero {
        padding: 80px 0 35px;
    }
    
    .hero::after {
        opacity: 0.1;
    }
    
    .hero-banner {
        padding: 0 15px;
    }
    
    .hero-banner::before {
        width: 60px;
        height: 2px;
        top: -12px;
    }
    
    .banner-image {
        border-radius: 12px;
        box-shadow: 
            0 12px 25px rgba(0, 0, 0, 0.1),
            0 0 0 1px rgba(255, 255, 255, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
    
    .banner-image:hover {
        transform: translateY(-4px) scale(1.005);
    }
    
    .hero-cta::before,
    .hero-cta::after {
        display: none;
    }
    
    .cta-button.primary {
        padding: 16px 32px;
        font-size: 1.05rem;
        letter-spacing: 0.3px;
    }
    
    .cta-button.large {
        padding: 18px 36px;
        font-size: 1.2rem;
    }
    
    .cta-note {
        font-size: 0.85rem;
        padding: 8px 16px;
        margin-top: 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 50px;
    }
    
    .section-title::after {
        width: 60px;
        height: 3px;
        bottom: -12px;
    }
    
    .benefit-card {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }
    
    .benefit-icon svg {
        width: 25px;
        height: 25px;
    }
    
    .benefit-card h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .timeline-marker {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .timeline-content {
        padding: 20px;
        border-radius: 12px;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .pricing .container {
        padding: 0 15px;
    }
    
    .pricing-card {
        padding: 25px 15px;
        border-radius: 15px;
        margin: 0;
    }
    
    .pricing-card.sold-out {
        transform: scale(1.0);
    }
    
    .pricing-card.active-offer {
        transform: scale(1.0);
        animation: none;
    }
    
    .pricing-card.future-option {
        transform: scale(1.0);
    }
    
    .pricing-amount.highlight {
        font-size: 2.5rem;
    }
    
    .remaining-count {
        font-size: 1.5rem;
    }
    
    .urgency-indicator {
        top: 6px;
        right: 6px;
        font-size: 0.65rem;
        padding: 2px 6px;
    }
    
    .offer-cta {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .sold-out-badge {
        font-size: 1rem;
        padding: 6px 16px;
    }
    
    .pricing-cta-strip {
        margin: 25px -15px;
        padding: 20px 15px;
        border-radius: 10px;
    }
    
    .cta-strip-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .cta-strip-text h3 {
        font-size: 1.3rem;
        line-height: 1.3;
    }
    
    .cta-strip-text p {
        font-size: 0.9rem;
    }
    
    .cta-button.pricing-cta {
        padding: 14px 25px;
        font-size: 1rem;
    }
    
    .pricing-amount {
        font-size: 2.5rem;
    }
    
    .pricing-features {
        gap: 15px;
    }
    
    .feature-item {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 20px 25px;
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        padding: 0 25px 20px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }
    
    .urgency-text {
        font-size: 1rem;
    }
    
    #countdown {
        padding: 4px 12px;
        font-size: 0.9rem;
    }
    
    .footer-info h3 {
        font-size: 1.3rem;
    }
    
    .footer-links {
        gap: 15px 25px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease forwards;
}

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

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease forwards;
}

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

/* Scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}