/* Custom Lesson Course Styles */
/* Main color: #e60012 (Red) */

/* Hero Section */
.custom-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 50%, #fff5f5 100%);
}

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

.hero-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(230, 0, 18, 0.1), rgba(230, 0, 18, 0.05));
    animation: float 20s infinite ease-in-out;
}

.hero-circle.circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.hero-circle.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation-delay: 5s;
}

.hero-circle.circle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.custom-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-badge-float {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e60012, #ff3333);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(230, 0, 18, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.custom-hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #333;
}

.title-highlight {
    background: linear-gradient(135deg, #e60012, #ff3333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.custom-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-image-wrapper {
    margin: 40px 0;
    display: flex;
    justify-content: center;
}

.hero-main-image {
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(230, 0, 18, 0.2);
    animation: slideUp 1s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.custom-hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #e60012, #ff3333);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(230, 0, 18, 0.4);
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(230, 0, 18, 0.5);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #e60012;
    padding: 18px 40px;
    border: 2px solid #e60012;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: #e60012;
    color: white;
}

/* Key Points Section */
.key-points-section {
    padding: 80px 20px;
    background: white;
}

.section-container {
    max-width: 100%;
    margin: 0 auto;
}

.section-title {
    font-size: 40px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 16px;
    color: #333;
}

.section-subtitle {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 60px;
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.point-card {
    position: relative;
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.point-card:hover {
    border-color: #e60012;
    box-shadow: 0 10px 40px rgba(230, 0, 18, 0.15);
    transform: translateY(-5px);
}

.point-card.featured {
    border: 3px solid #e60012;
    box-shadow: 0 10px 40px rgba(230, 0, 18, 0.2);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #e60012, #ff3333);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.point-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: linear-gradient(135deg, #e60012, #ff3333);
    color: white;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 20px;
}

.point-image {
    margin: 20px 0;
}

.point-image img {
    max-width: 200px;
    height: 200px;
    border-radius: 15px;
}

.point-icon {
    width: 80px;
    height: 80px;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(230, 0, 18, 0.1), rgba(230, 0, 18, 0.05));
    border-radius: 50%;
    color: #e60012;
    font-size: 36px;
}

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

.point-card p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.point-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 20px auto 0;
    width: fit-content;
}

.point-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 1rem;
}

.point-features li i {
    color: #e60012;
    font-size: 16px;
    flex-shrink: 0;
}

/* Use Cases Section */
.use-cases-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.use-case-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.use-case-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(230, 0, 18, 0.15);
}

.use-case-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(230, 0, 18, 0.1), rgba(230, 0, 18, 0.05));
}

.use-case-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.use-case-content {
    padding: 30px;
    text-align: center;
}

.use-case-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e60012, #ff3333);
    border-radius: 50%;
    color: white;
    font-size: 26px;
}

.use-case-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #333;
    line-height: 1.4;
}

.use-case-content p {
    font-size: 1.3rem;
    line-height: 1.7;
}

/* Lesson Gallery */
.lesson-gallery {
    padding: 80px 20px;
    background: white;
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(230, 0, 18, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-caption {
    background: linear-gradient(to top, rgba(230, 0, 18, 0.95), rgba(230, 0, 18, 0.7));
    color: var(--background-light);
    padding: 20px;
    text-align: center;
}

.gallery-caption h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.gallery-caption p {
    font-size: 1rem;
    opacity: 0.9;
}

.custom-price-section {
    padding: 50px 20px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.price-table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
}

.custom-price-table {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.custom-price-table thead {
    background: linear-gradient(135deg, #e60012, #ff3333);
    color: white;
}

.custom-price-table thead th {
    padding: 24px 20px;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
}

.custom-price-table thead th.popular-column {
    background: linear-gradient(135deg, #b30000, #e60012);
    position: relative;
}

.badge-popular {
    display: inline-block;
    background: #ffd700;
    color: #b30000;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    margin-left: 8px;
}

.custom-price-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
}

.custom-price-table tbody tr:last-child {
    border-bottom: none;
}

.custom-price-table tbody td {
    padding: 24px 20px;
    text-align: center;
    font-size: 1.3rem;
    color: #333;
}

.custom-price-table tbody td:first-child {
    font-weight: 700;
    text-align: center;
    background: #f9f9f9;
}

.custom-price-table .popular-column {
    background: rgba(230, 0, 18, 0.05);
    font-weight: 700;
    color: #e60012;
}

.price-per {
    display: block;
    font-size: 13px;
    color: #999;
    margin-top: 5px;
}

.price-features-list {
    margin-top: 50px;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.price-features-list h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.price-features-list h3 i {
    color: #e60012;
}

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

.feature-col ul {
    list-style: none;
    padding: 0;
}

.feature-col li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1rem;
    color: #555;
}

.feature-col li i {
    color: #e60012;
    font-size: 18px;
}

.price-note {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: rgba(230, 0, 18, 0.05);
    border-radius: 10px;
    font-size: 1rem;
}

.price-note i {
    color: #e60012;
    margin-right: 8px;
}

/* Custom Price Features Section */
.custom-price-features {
    padding: 60px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
}

.custom-price-features .price-features-list {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.custom-price-features .price-features-list h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.custom-price-features .price-features-list h3 i {
    color: #e60012;
    font-size: 1.8rem;
}

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

.custom-price-features .feature-col ul {
    list-style: none;
    padding: 0;
}

.custom-price-features .feature-col li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.3rem;
    color: #555;
    line-height: 1.6;
}

.custom-price-features .feature-col li i {
    color: #e60012;
    font-size: 18px;
    flex-shrink: 0;
}

/* Learning Flow Section */
.custom-flow-section {
    padding: 80px 20px;
    background: white;
}

.flow-steps {
    max-width: 800px;
    margin: 0 auto;
}

.flow-step {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 20px 30px;
    align-items: start;
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.step-number {
    grid-column: 1 / -1;
    grid-row: 1;
    width: 80%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e60012, #ff3333);
    color: white;
    font-size: 2rem;
    font-weight: 900;
    flex-shrink: 0;
    margin-left: auto;
    margin-right: auto;
}

.step-content h3 {
    grid-column: 1;
    grid-row: 2;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    height: 100%;
}

.step-image {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-image img {
    max-width: 60%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.step-content p {
    grid-column: 1 / -1;
    grid-row: 3;
    font-size: 1.3rem;
    line-height: 1.7;
    margin: 0;
    text-align: center;
}

.step-content {
    display: contents;
}

.step-icon {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 0, 18, 0.1);
    border-radius: 50%;
    color: #e60012;
    font-size: 24px;
}

.flow-arrow {
    text-align: center;
    margin: 20px 0;
    color: #e60012;
    font-size: 30px;
}

/* FAQ Section */
.custom-faq-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-items: center;
    justify-content: center;
}

.faq-item {
    width: 100%;
    max-width: 1000px;
}

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

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(230, 0, 18, 0.15);
    transform: translateY(-3px);
}

.faq-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e60012, #ff3333);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
    line-height: 1.4;
    text-align: center;
}

.faq-item p {
    font-size: 1.3rem;
    line-height: 1.7;
    text-align: center;
}

/* Final CTA Section */
.final-cta-custom {
    position: relative;
    padding: 80px 20px;
    background: linear-gradient(135deg, #e60012, #ff3333);
    overflow: hidden;
}

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

.cta-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 20s infinite ease-in-out;
}

.cta-circle.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
}

.cta-circle.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
}

.cta-content-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.cta-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cta-text-content {
    color: white;
    max-width: 800px;
}

.cta-text-content h2 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-text-content p {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #e60012;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: white;
    padding: 18px 40px;
    border: 2px solid white;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: white;
    color: #e60012;
}

.cta-note {
    font-size: 13px;
    opacity: 0.9;
}

@media (min-width: 1700px) {
    .cta-text-content h2 {
        font-size: 1.8rem;
    }

    .cta-text-content p {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 1.5rem;
    }

    .point-features li {
        font-size: 1.3rem;
    }

    .point-card p {
        font-size: 1.5rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .custom-hero-title {
        font-size: 32px;
    }

    .custom-hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-main-image {
        max-width: 300px;
    }

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

    .section-subtitle {
        font-size: 1.3rem;
    }

    .points-grid,
    .use-cases-grid,
    .gallery-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

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

    .faq-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .faq-item h3 {
        text-align: center;
        font-size: 0.9rem;
    }

    .faq-item p {
        text-align: center;
    }

    .point-card h3 {
        font-size: 1.3rem;
        text-align: center;
        line-height: 1.5;
    }

    .point-card p {
        font-size: 1rem;
    }

    .point-features {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .custom-hero-cta {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .flow-step {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        text-align: center;
        padding: 20px;
    }

    .step-number {
        grid-column: 1;
        grid-row: 1;
        width: 90%;
        margin: 0 auto 20px;
    }

    .step-content h3 {
        grid-column: 1;
        grid-row: 2;
        justify-content: center;
        margin-bottom: 15px;
        font-size: 1rem;
    }

    .step-content p {
        grid-column: 1;
        grid-row: 3;
        margin-bottom: 20px;
        text-align: center;
        font-size: 1rem;
    }

    .step-image {
        grid-column: 1;
        grid-row: 4;
        text-align: center;
        margin-top: 10px;
    }

    .step-image img {
        max-width: 80%;
    }

    .step-content {
        display: contents;
    }

    .cta-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .cta-image {
        order: 2;
    }

    .cta-image img {
        max-width: 60%;
        margin: 0 auto;
        display: block;
    }

    .cta-text-content {
        order: 1;
        width: 100%;
        text-align: center;
    }

    .cta-text-content h2 {
        font-size: 1.1rem;
        text-align: center;
    }

    .cta-text-content p {
        text-align: center;
        font-size: 1rem;
    }

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

    .cta-buttons {
        justify-content: center;
    }

    .btn-cta-large,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }

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

    .price-table-wrapper {
        overflow-x: scroll;
    }

    .point-card h3 {
        font-size: 1.3rem;
        text-align: center;
        line-height: 1.5;
    }

    .point-features li {
        font-size: 1rem;
    }

    .custom-price-table thead th {
        font-size: 0.7rem;
        padding: 20px 15px;
    }

    .custom-price-table thead th:first-child {
        min-width: 90px;
    }

    .custom-price-table tbody td:first-child {
        font-size: 0.7rem;
        min-width: 90px;
    }

    .custom-price-features .feature-col ul {
        margin-left: 0;
    }

    .price-features-list {
        padding: 20px 15px;
    }

    .custom-price-features .price-features-list {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .custom-hero {
        min-height: 500px;
        padding: 60px 15px;
    }

    .custom-hero-title {
        font-size: 1.4rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 14px 30px;
        font-size: 16px;
    }

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

    .point-image img {
        max-width: 150px;
    }

    .custom-price-table thead th {
        font-size: 14px;
        padding: 16px 10px;
    }

    .custom-price-table thead th:first-child {
        min-width: 110px;
    }

    .custom-price-table tbody td {
        font-size: 14px;
        padding: 16px 10px;
    }

    .custom-price-table tbody td:first-child {
        min-width: 110px;
        width: 110px;
    }
}