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

body {
    font-family: 'Sarabun', sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #2d5016 0%, #1a3d0a 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.hero-section::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 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-image-wrapper {
    flex: 1;
    max-width: 500px;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.05);
}

.hero-text {
    flex: 1;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.highlight-red {
    color: #ff4757;
    display: block;
}

.highlight-white {
    color: white;
    display: block;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff4757 0%, #ff6348 100%);
    color: white;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.4);
    transition: all 0.3s ease;
}

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

.pulse {
    animation: pulse 2s infinite;
}

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

/* Section Styles */
section {
    padding: 80px 20px;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* Pain Points Section */
.pain-section {
    background: white;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.pain-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pain-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.pain-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.pain-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.pain-card p {
    font-size: 1rem;
    color: #555;
}

.pain-summary {
    background: linear-gradient(135deg, #2d5016 0%, #1a3d0a 100%);
    padding: 40px;
    border-radius: 20px;
    color: white;
    text-align: center;
}

.pain-point {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.pain-question {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 30px;
    color: #ffd700;
}

/* Story Section */
.story-section {
    background: linear-gradient(135deg, #1a3d0a 0%, #1a3d0a 100%);
}

.story-section .section-title {
    color: white;
}

.story-section .story-intro {
    color: white;
}

.story-section .highlight-text {
    color: white;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-intro {
    text-align: center;
    margin-bottom: 40px;
}

.story-intro p {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.highlight-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d5016;
}

.story-symptoms {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.symptom-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.bullet {
    color: #ff4757;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.symptom-item p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.story-realization {
    background: linear-gradient(135deg, #ff4757 0%, #ff6348 100%);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    color: white;
}

.emphasis-text {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Turning Point Section */
.turning-point-section {
    background: white;
}

.turning-content {
    max-width: 1000px;
    margin: 0 auto;
}

.turning-story {
    text-align: center;
    margin-bottom: 50px;
}

.turning-story p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.quote-box {
    background: linear-gradient(135deg, #2d5016 0%, #1a3d0a 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    font-size: 1.4rem;
    font-weight: 600;
    font-style: italic;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.turning-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff4757;
    margin-top: 20px;
}

.action-steps h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.step-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2d5016 0%, #1a3d0a 100%);
    color: white;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.step-card p {
    font-size: 1rem;
    color: #555;
}

/* Results Section */
.results-section {
    background: linear-gradient(135deg, #2d5016 0%, #1a3d0a 100%);
    color: white;
}

.results-section .section-title {
    color: white;
}

.results-content {
    max-width: 900px;
    margin: 0 auto;
}

.result-timeline {
    margin-bottom: 50px;
}

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.timeline-marker {
    width: 40px;
    height: 40px;
    background: #4cd137;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.timeline-content p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.result-promise {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.promise-text {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Course Section */
.course-section {
    background: white;
}

.course-intro {
    text-align: center;
    margin-bottom: 50px;
}

.course-intro p {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.course-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 30px;
    color: #2d5016;
}

.brand-name {
    color: #ff4757;
    font-weight: 700;
}

.course-benefits {
    max-width: 900px;
    margin: 0 auto 50px;
}

.benefit-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: linear-gradient(135deg, #1a3d0a 0%, #1a3d0a 100%);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: white;
}

.course-delivery {
    background: linear-gradient(135deg, #2d5016 0%, #1a3d0a 100%);
    padding: 40px;
    border-radius: 20px;
    color: white;
    text-align: center;
}

.course-delivery h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.delivery-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

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

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

.feature-item p {
    font-size: 1.1rem;
}

/* Value Section */
.value-section {
    background: linear-gradient(135deg, #2d5016 0%, #1a3d0a 100%);
}

.value-section .section-title {
    color: white;
}



.value-intro {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #ffffff;
}

.cost-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.cost-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cost-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.cost-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.cost-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.cost-card p {
    font-size: 1rem;
    color: #555;
}

.cost-summary {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.summary-text {
    font-size: 1.2rem;
    line-height: 1.6;
}

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

.comparison-left,
.comparison-right {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.comparison-left {
    border-left: 5px solid #ff4757;
}

.comparison-right {
    border-left: 5px solid #4cd137;
}

.comparison-left h3,
.comparison-right h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.comparison-left ul,
.comparison-right ul {
    list-style: none;
    padding-left: 0;
}

.comparison-left li,
.comparison-right li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.comparison-left li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ff4757;
    font-weight: 700;
}

.comparison-right li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4cd137;
    font-weight: 700;
}

.comparison-right p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* After Benefits Section */
.after-benefits-section {
    background: white;
}

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

.after-benefit-card {
    background: linear-gradient(135deg, #2d5016 0%, #1a3d0a 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.after-benefit-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.5);
}

.after-benefit-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.after-benefit-card p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, #2d5016 0%, #1a3d0a 100%);
    color: white;
}

.pricing-section .section-title {
    color: white;
}

.pricing-content {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-comparison {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.comparison-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.comparison-calc {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.comparison-note {
    font-size: 1rem;
    opacity: 0.9;
}

.pricing-box {
    background: white;
    color: #2c3e50;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.price-original {
    text-align: center;
    margin-bottom: 30px;
}

.price-original p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.price-strike {
    font-size: 2rem;
    text-decoration: line-through;
    color: #999;
}

.price-offers {
    margin-bottom: 30px;
}

.price-tier {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.price-tier.special {
    background: linear-gradient(135deg, #ff4757 0%, #ff6348 100%);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.4);
}

.tier-badge {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.tier-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.tier-price.highlight {
    color: #ffd700;
}

.tier-note {
    font-size: 1rem;
    opacity: 0.9;
}

.bonus-box {
    background: linear-gradient(135deg, #4cd137 0%, #44bd32 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.bonus-box h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.bonus-box p {
    font-size: 1.1rem;
}

/* Urgency Section */
.urgency-section {
    background: linear-gradient(135deg, #ff4757 0%, #ff6348 100%);
    color: white;
}

.urgency-section .section-title {
    color: white;
}

.urgency-content {
    max-width: 900px;
    margin: 0 auto;
}

.urgency-warning {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.urgency-warning p {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.urgency-action {
    background: rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.action-text {
    font-size: 1.3rem;
    font-weight: 600;
}

/* Registration Section */
.register-section {
    background: white;
}

.register-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.register-form {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    font-family: 'Prompt', sans-serif;
    border: 2px solid #ddd;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d5016;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #ff4757 0%, #ff6348 100%);
    color: white;
    padding: 18px;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.4);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 71, 87, 0.6);
}

.contact-alternative {
    text-align: center;
    margin-top: 30px;
}

.contact-alternative p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #555;
}

.line-button {
    display: inline-block;
    background: #00B900;
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 185, 0, 0.3);
}

.line-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 185, 0, 0.5);
}

.line-icon {
    font-size: 1.3rem;
    margin-right: 5px;
}

/* Testimonial Section */
.testimonial-section {
    background: linear-gradient(135deg, #2d5016 0%, #1a3d0a 100%);
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-quote {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid #2d5016;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.testimonial-quote p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #2c3e50;
}

.testimonial-note {
    text-align: center;
    font-size: 1.1rem;
    color: #ff4757;
    font-weight: 600;
}

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

.footer p {
    margin-bottom: 10px;
}

.footer a {
    color: #4cd137;
    text-decoration: none;
    font-weight: 600;
}

.footer a:hover {
    text-decoration: underline;
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        gap: 30px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .pain-grid,
    .cost-grid,
    .after-benefits-grid {
        grid-template-columns: 1fr;
    }

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

    .comparison-box {
        grid-template-columns: 1fr;
    }

    .delivery-features {
        flex-direction: column;
        gap: 20px;
    }

    .register-form {
        padding: 30px 20px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: #2d5016;
    color: white;
}

::-moz-selection {
    background: #2d5016;
    color: white;
}
