/* ========================================
   SIÊU TRỢ LÝ NHÂN HIỆU - Light Theme
   ======================================== */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #1a1a2e;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

/* Colors */
:root {
    --primary-blue: #2847c5;
    --primary-red: #e53935;
    --primary-green: #43a047;
    --text-dark: #1a1a2e;
    --text-gray: #555;
    --bg-white: #ffffff;
    --bg-light: #f5f7fa;
    --bg-blue: #3b5fe3;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: var(--primary-red);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-blue);
}

.gradient-title {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-gray);
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(40, 71, 197, 0.2);
    border-radius: 12px;
    padding: 15px 20px;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.urgency-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.hot-badge {
    background: linear-gradient(135deg, var(--primary-red), #ff6b6b);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    animation: pulse 2s infinite;
}

.hot-badge.large {
    padding: 8px 20px;
    font-size: 1rem;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.viewers {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.pulse-dot,
.live-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 50%, #f5f7fa 100%);
    padding: 80px 0;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    padding-right: 40px;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
    color: var(--primary-blue);
}

.main-title .highlight {
    color: var(--primary-red);
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.urgency-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hot-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-red), #ff6b6b);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    width: fit-content;
}

.urgency-info p {
    font-size: 1rem;
    color: var(--text-gray);
}

.viewers-count {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Hero Form */
.hero-form {
    background: #ffffff;
    border: 2px solid rgba(40, 71, 197, 0.15);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(40, 71, 197, 0.1);
}

.hero-form h3 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 25px;
    color: var(--primary-blue);
}

.hero-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-form input {
    width: 100%;
    padding: 15px 20px;
    background: var(--bg-light);
    border: 2px solid #e0e5f0;
    border-radius: 10px;
    color: var(--text-dark);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.hero-form input::placeholder {
    color: #888;
}

.hero-form input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 10px rgba(40, 71, 197, 0.15);
}

/* CTA Button */
.cta-button {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, var(--primary-red), #ff5252);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(229, 57, 53, 0.4);
}

.cta-button.large {
    padding: 22px 40px;
    font-size: 1.3rem;
}

/* Pain Section */
.pain-section {
    padding: 100px 0;
    background: #ffffff;
}

.pain-section .section-title {
    color: var(--primary-blue);
    font-size: 2rem;
}

.pain-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.pain-column h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--primary-red);
}

.pain-list {
    list-style: none;
}

.pain-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-gray);
    font-size: 1.05rem;
    border-bottom: 1px solid #eee;
}

.pain-list li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

/* Problem Section */
.problem-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.problem-list {
    max-width: 800px;
    margin: 0 auto;
    list-style: none;
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.problem-list li {
    padding: 15px 20px;
    padding-left: 50px;
    position: relative;
    color: var(--text-dark);
    font-size: 1.05rem;
    margin-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}

.problem-list li::before {
    content: "⊗";
    position: absolute;
    left: 15px;
    color: var(--primary-red);
    font-size: 1.2rem;
}

/* Bottleneck Section */
.bottleneck-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-blue) 0%, #4a6cf7 100%);
}

.bottleneck-section .section-title {
    color: #ffffff;
}

.bottleneck-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.bottleneck-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.bottleneck-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.bottleneck-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-red), #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.bottleneck-card p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
}

/* Solution Section */
.solution-section {
    padding: 100px 0;
    background: #ffffff;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.solution-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: #fff;
    border-radius: 10px;
    border: 2px solid #eef1f6;
    transition: all 0.3s ease;
}

.solution-item:hover {
    border-color: var(--primary-green);
    box-shadow: 0 5px 20px rgba(67, 160, 71, 0.1);
}

.check-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-green), #66bb6a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    flex-shrink: 0;
}

.solution-item span:last-child {
    color: var(--text-dark);
}

/* Workshop Section */
.workshop-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-blue) 0%, #4a6cf7 100%);
}

.workshop-section .section-title {
    color: #ffffff;
}

.workshop-intro {
    text-align: center;
    margin-bottom: 40px;
}

.workshop-intro p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    text-decoration: line-through;
}

.workshop-benefits {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.workshop-benefits ul {
    list-style: none;
}

.workshop-benefits li {
    padding: 15px 0;
    padding-left: 40px;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-dark);
    border-bottom: 1px solid #f0f0f0;
}

.workshop-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Formula Section */
.formula-section {
    padding: 100px 0;
    background: #ffffff;
}

.formula-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.formula-item {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 2px solid #eef1f6;
    transition: all 0.3s ease;
}

.formula-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(40, 71, 197, 0.1);
}

.formula-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.formula-item p {
    color: var(--text-dark);
    font-size: 1rem;
}

/* Schedule Section */
.schedule-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.schedule-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.schedule-card.morning {
    border-top: 4px solid var(--primary-blue);
}

.schedule-card.afternoon {
    border-top: 4px solid var(--primary-red);
}

.schedule-header {
    margin-bottom: 25px;
}

.time-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue), #4a6cf7);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.schedule-header h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
}

.schedule-card ul {
    list-style: none;
}

.schedule-card li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-gray);
    border-bottom: 1px solid #f0f0f0;
}

.schedule-card li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
}

/* Urgency Banner */
.urgency-banner {
    margin-top: 50px;
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #fff5f5, #fff0f0);
    border-radius: 15px;
    border: 2px solid rgba(229, 57, 53, 0.2);
}

.urgency-banner p {
    font-size: 1.1rem;
    margin-top: 10px;
    color: var(--text-dark);
}

.viewers-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-gray);
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: #ffffff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.benefit-card {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 2px solid #eef1f6;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: 0 10px 30px rgba(67, 160, 71, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-dark);
    font-size: 1rem;
}

/* Instructor Section */
.instructor-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-blue) 0%, #4a6cf7 100%);
}

.instructor-section .section-title {
    color: #ffffff;
}

.instructor-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.instructor-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.instructor-info h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.instructor-title {
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.credentials {
    list-style: none;
}

.credentials li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.credentials li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-size: 1rem;
    font-weight: bold;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

img.testimonial-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
    object-fit: cover;
}

.testimonial-card h4 {
    color: var(--text-dark);
    font-size: 1rem;
}

/* Results Gallery - New Analytics Display */
.results-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.result-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(40, 71, 197, 0.1);
}

.result-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(40, 71, 197, 0.15);
    border-color: var(--primary-blue);
}

.result-image {
    width: 100%;
    overflow: hidden;
}

.result-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.result-card:hover .result-image img {
    transform: scale(1.02);
}

.result-stats {
    padding: 25px;
    text-align: center;
    background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
}

.result-stats h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-weight: 800;
}

.stat-highlight {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.result-stats p:last-child {
    color: var(--text-gray);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .results-gallery {
        grid-template-columns: 1fr;
    }

    .result-stats h3 {
        font-size: 1.3rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #ffffff;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    border: 2px solid #eef1f6;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #fff;
}

.faq-number {
    color: var(--primary-blue);
    font-weight: 700;
    margin-right: 15px;
}

.faq-question>span:nth-child(2) {
    flex: 1;
    color: var(--text-dark);
    font-weight: 500;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(40, 71, 197, 0.1);
    border-radius: 50%;
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-weight: bold;
}

.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 25px 20px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff5f5, #fff0f0);
}

.pricing-box {
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: center;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(229, 57, 53, 0.1);
    border: 2px solid rgba(229, 57, 53, 0.2);
}

.price-info {
    margin-bottom: 20px;
}

.original-price {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.strikethrough {
    text-decoration: line-through;
    color: #999;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 10px;
}

.highlight-price {
    color: var(--primary-red);
    font-size: 2rem;
}

.scarcity-text {
    color: var(--primary-red);
    font-weight: 600;
}

.cta-form {
    max-width: 500px;
    margin: 0 auto;
}

.cta-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-form input {
    padding: 15px 20px;
    border: 2px solid #e0e5f0;
    border-radius: 10px;
    font-size: 1rem;
    background: #fff;
}

.cta-form input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

/* Final CTA */
.final-cta {
    padding: 60px 0;
    background: var(--primary-blue);
    text-align: center;
}

.closing-message {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
}

/* Footer */
.footer {
    background: #1a1a2e;
    padding: 60px 0 30px;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #fff;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* New Sections Styles */

/* Warning Text */
.warning-text {
    background: linear-gradient(135deg, #fff3e0, #ffecb3);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid #ff9800;
    margin-bottom: 25px;
    font-weight: 500;
    color: var(--text-dark);
}

/* Wake Up Box */
.wake-up-box {
    background: linear-gradient(135deg, #ffebee, #ffcdd2);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 2px solid var(--primary-red);
}

.wake-up-box h2 {
    color: var(--primary-red);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.wake-up-box p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* Sub Description */
.sub-desc {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

/* Form Note */
.form-note {
    text-align: center;
    margin-top: 15px;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.9rem;
}

/* System Intro */
.system-intro {
    padding: 60px 0;
    background: var(--bg-blue);
    color: white;
}

.intro-text {
    font-size: 1.3rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.intro-text .highlight {
    color: #ffd700;
}

/* Pain Grid */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.pain-card {
    display: flex;
    gap: 15px;
    padding: 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-green);
}

.pain-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pain-content h4 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.pain-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Target Section */
.target-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.target-grid {
    max-width: 800px;
    margin: 0 auto;
}

.target-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.target-item .check-icon {
    width: 30px;
    height: 30px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
}

/* Story Section */
.story-section {
    padding: 100px 0;
    background: #fff;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-content p {
    font-size: 1.15rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.story-fails {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: left;
}

.story-fails p {
    padding-left: 20px;
    border-left: 3px solid var(--primary-red);
    margin-bottom: 15px;
}

.truth-box {
    background: linear-gradient(135deg, var(--bg-blue), #4a6cf7);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    color: white;
}

.truth-box p {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Wrong Section */
.wrong-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.wrong-list {
    max-width: 700px;
    margin: 30px auto;
}

.wrong-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.wrong-icon {
    font-size: 1.5rem;
}

.truth-statement {
    text-align: center;
    margin-top: 40px;
}

.truth-statement p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Bottleneck Content */
.bottleneck-content h4 {
    color: var(--primary-red);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.bottleneck-content p {
    color: var(--text-gray);
}

.bottleneck-conclusion {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
}

.bottleneck-conclusion p {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Solution Intro */
.solution-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.solution-intro p {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--text-gray);
}

.highlight-text {
    color: var(--primary-blue);
    font-size: 1.3rem !important;
}

/* Schedule Result */
.schedule-result {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: var(--bg-blue);
    border-radius: 15px;
    color: white;
}

.schedule-result p {
    font-size: 1.3rem;
}

.afternoon-badge {
    background: linear-gradient(135deg, var(--primary-red), #ff6b6b) !important;
}

/* Imagine Section */
.imagine-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
}

.imagine-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.imagine-content p {
    font-size: 1.15rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

/* Testimonials Updates */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.feedback-gallery {
    margin-top: 40px;
}

.feedback-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.feedback-row:last-child {
    grid-template-columns: 1fr 2fr;
}

.feedback-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feedback-item:hover {
    transform: translateY(-5px);
}

.feedback-item img {
    width: 100%;
    height: auto;
    display: block;
}

.feedback-item.large img {
    height: 100%;
    object-fit: cover;
}

.testimonial-note {
    text-align: center;
    margin-top: 40px;
    font-size: 1.2rem;
}

/* Instructor Updates */
.instructor-note {
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-radius: 10px;
    color: var(--primary-blue);
}

/* Packages Section */
.packages-section {
    padding: 100px 0;
    background: #fff;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.package-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 35px;
    border: 2px solid #e0e5f0;
    transition: all 0.3s ease;
}

.package-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(40, 71, 197, 0.1);
}

.package-card h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.package-value {
    color: var(--primary-red);
    font-weight: 700;
    margin-bottom: 20px;
}

.package-card ul {
    list-style: none;
}

.package-card li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e5f0;
    color: var(--text-dark);
}

.total-value {
    text-align: center;
    margin-top: 40px;
    padding: 25px;
    background: var(--bg-blue);
    border-radius: 15px;
    color: white;
    font-size: 1.3rem;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.pricing-comparison {
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: center;
}

.pricing-comparison ul {
    list-style: none;
    text-align: left;
    margin: 20px 0;
}

.pricing-comparison li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e5f0;
}

.pricing-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--primary-red);
}

.original-price {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.price-highlight {
    padding: 30px;
    background: linear-gradient(135deg, #ffebee, #ffcdd2);
    border-radius: 15px;
    margin: 25px 0;
}

.price-highlight .label {
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.current-price {
    font-size: 1.5rem;
}

.highlight-price {
    color: var(--primary-red);
    font-size: 2.5rem;
    font-weight: 900;
}

.strikethrough {
    text-decoration: line-through;
    color: #999;
}

.savings {
    color: var(--primary-green);
    margin-top: 10px;
}

.price-context {
    color: var(--text-gray);
    margin: 20px 0 10px;
    font-size: 0.95rem;
}

.price-result {
    color: var(--primary-blue);
    font-size: 1.1rem;
}

/* Bonus Section */
.bonus-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fffde7, #fff9c4);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bonus-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid #ffd54f;
}

.bonus-card h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.bonus-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.bonus-value {
    color: var(--primary-red);
    font-weight: 700;
    margin-bottom: 15px;
}

/* Urgency Section */
.urgency-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffebee, #ffcdd2);
}

.urgency-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(229, 57, 53, 0.15);
    border: 3px solid var(--primary-red);
}

.urgency-box h3 {
    color: var(--primary-red);
    font-size: 2rem;
    margin-bottom: 20px;
}

.urgency-box p {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.countdown-note {
    margin-top: 25px;
    padding: 20px;
    background: var(--primary-red);
    color: white;
    border-radius: 10px;
}

/* Guarantee Section */
.guarantee-section {
    padding: 100px 0;
    background: #fff;
}

.guarantee-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-radius: 20px;
    border: 3px solid var(--primary-green);
}

.guarantee-box h3 {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.guarantee-box p {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

/* Action Section */
.action-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.action-steps {
    max-width: 600px;
    margin: 0 auto 50px;
    text-align: center;
}

.action-steps h3 {
    margin-bottom: 30px;
    color: var(--primary-blue);
}

.steps-list {
    text-align: left;
}

.step {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.step-num {
    width: 35px;
    height: 35px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-note {
    margin-top: 20px;
    font-size: 1.1rem;
}

.scarcity-text {
    text-align: center;
    color: var(--primary-red);
    font-weight: 700;
    margin-top: 15px;
    font-size: 1.1rem;
}

/* PS Section */
.ps-section {
    padding: 100px 0;
    background: #fff;
}

.ps-box,
.pps-box {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 20px;
}

.ps-box h3,
.pps-box h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.ps-box p,
.pps-box p {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.pps-box ul {
    list-style: none;
    margin: 20px 0;
}

.pps-box li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e5f0;
}

.pps-box .cta-button {
    margin-top: 30px;
}

/* Final CTA Updates */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue), #4a6cf7);
    text-align: center;
}

.closing-message {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 15px;
}

.closing-sub {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.closing-question {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 30px;
}

/* Footer Updates */
.footer-content {
    text-align: center;
}

.footer-content p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text {
        padding-right: 0;
        text-align: center;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .instructor-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .instructor-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .pain-grid {
        grid-template-columns: 1fr;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .bonus-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .floating-cta {
        right: 10px;
        top: 10px;
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .container {
        padding: 0 15px;
    }

    .main-title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .hero-form {
        padding: 25px;
    }

    .wake-up-box {
        padding: 20px;
    }

    .highlight-price {
        font-size: 2rem;
    }
}

/* Payment QR Section */
.payment-qr-section {
    margin-top: 25px;
    padding: 25px;
    background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
    border-radius: 15px;
    border: 2px solid rgba(40, 71, 197, 0.15);
    text-align: center;
}

.payment-qr-section h4 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.qr-code-container {
    background: white;
    padding: 15px;
    border-radius: 15px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(40, 71, 197, 0.1);
}

.qr-code-image {
    max-width: 250px;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.bank-info {
    text-align: left;
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.bank-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid #eef1f6;
}

.bank-info-row:last-child {
    border-bottom: none;
}

.bank-label {
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 500;
}

.bank-value {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
}

.bank-value.account-number {
    color: var(--primary-blue);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.bank-value.amount {
    color: var(--primary-red);
    font-size: 1.2rem;
    font-weight: 800;
}

.amount-row {
    background: linear-gradient(135deg, #fff5f5 0%, #fff0f0 100%);
    margin: 10px -20px -20px -20px;
    padding: 15px 20px !important;
    border-radius: 0 0 12px 12px;
    border-bottom: none !important;
}

.copy-btn {
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary-blue), #4a6cf7);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 71, 197, 0.3);
}

.copy-btn:active {
    transform: translateY(0);
}

.payment-note {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 10px;
    font-style: italic;
}

/* Hotline Box */
.hotline-box {
    margin-top: 15px;
    padding: 15px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 10px;
    border: 2px solid rgba(67, 160, 71, 0.3);
    text-align: center;
}

.hotline-box p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-dark);
}

.hotline-link {
    color: var(--primary-green);
    font-weight: 700;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.hotline-link:hover {
    color: #2e7d32;
    text-decoration: underline;
}

/* Floating Hotline Button */
.floating-hotline {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #43a047, #66bb6a);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(67, 160, 71, 0.4);
    transition: all 0.3s ease;
    animation: pulse-hotline 2s infinite;
}

.floating-hotline:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(67, 160, 71, 0.5);
}

.hotline-icon {
    font-size: 1.3rem;
}

.hotline-text {
    font-size: 0.95rem;
}

@keyframes pulse-hotline {

    0%,
    100% {
        box-shadow: 0 5px 20px rgba(67, 160, 71, 0.4);
    }

    50% {
        box-shadow: 0 5px 30px rgba(67, 160, 71, 0.6);
    }
}

/* Popup Modal */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-overlay.active {
    display: flex;
    opacity: 1;
}

.popup-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    animation: popup-slide-in 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes popup-slide-in {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.popup-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.popup-content h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.popup-content>p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.popup-hotline {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.popup-hotline p {
    margin: 0;
    color: var(--text-dark);
}

.popup-hotline a {
    color: var(--primary-green);
    font-weight: 700;
    text-decoration: none;
}

.popup-hotline a:hover {
    text-decoration: underline;
}

.popup-close-btn {
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--primary-blue), #4a6cf7);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(40, 71, 197, 0.4);
}

/* Footer Hotline */
.footer-hotline {
    margin-top: 10px;
}

.footer-hotline a {
    color: #66bb6a;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-hotline a:hover {
    color: #81c784;
    text-decoration: underline;
}

/* Responsive for QR section */
@media (max-width: 480px) {
    .bank-info-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .copy-btn {
        margin-top: 5px;
    }

    .qr-code-image {
        max-width: 200px;
    }

    .payment-qr-section {
        padding: 15px;
    }

    .floating-hotline {
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .hotline-text {
        display: none;
    }

    .floating-hotline .hotline-icon {
        font-size: 1.5rem;
    }

    .popup-content {
        padding: 25px;
    }

    .popup-content h3 {
        font-size: 1.3rem;
    }
}