* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    padding: 20px;
}

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

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 10px;
    margin-bottom: 30px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #2d7a3e 0%, #4caf50 100%);
    border-radius: 10px;
    transition: width 0.3s ease;
}

/* Content */
.content {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.3;
}

h2 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-align: center;
}

.subtitle {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
    text-decoration: underline;
}

/* Image Placeholder */
.image-placeholder {
    margin-bottom: 30px;
    text-align: center;
}

.main-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.image-box {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #4a7c4e 0%, #2d5a3d 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    border: 3px dashed rgba(255, 255, 255, 0.5);
}

/* Card Styling */
.card {
    text-align: center;
}

.badge {
    background: #f0ebe0;
    padding: 30px;
    border-radius: 50%;
    display: inline-block;
    margin: 20px 0;
    border: 5px solid #d4c5a0;
}

.badge h2 {
    font-family: cursive;
    color: #2d2d2d;
    margin: 0;
}

.attention {
    color: #333;
    font-size: 14px;
    margin: 20px 0;
    line-height: 1.6;
}

.attention strong {
    color: #d32f2f;
}

/* Options */
.options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.option-btn {
    background: linear-gradient(135deg, #d4f1d4 0%, #c8e6c9 100%);
    border: 2px solid #4caf50;
    border-radius: 15px;
    padding: 20px;
    font-size: 18px;
    color: #2d2d2d;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.option-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
    background: linear-gradient(135deg, #c8e6c9 0%, #a5d6a7 100%);
}

.emoji-option {
    gap: 15px;
}

.emoji {
    font-size: 28px;
}

.emoji-group {
    display: flex;
    gap: 8px;
}

.arrow {
    font-size: 24px;
    color: #666;
}

/* Continue Button */
.btn-continue {
    width: 100%;
    background: linear-gradient(135deg, #2d7a3e 0%, #4caf50 100%);
    color: white;
    border: none;
    border-radius: 15px;
    padding: 18px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.btn-continue:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 122, 62, 0.4);
}

/* Name Input */
.name-input {
    width: 100%;
    padding: 18px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    margin: 20px 0;
    transition: border-color 0.3s ease;
}

.name-input:focus {
    outline: none;
    border-color: #4caf50;
}

.info-text {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin: 15px 0;
}

/* Checkbox Options */
.checkbox-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.checkbox-option {
    background: linear-gradient(135deg, #d4f1d4 0%, #c8e6c9 100%);
    border: 2px solid #4caf50;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
}

.checkbox-input {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.checkbox-text {
    font-size: 16px;
    color: #2d2d2d;
    flex: 1;
}

/* Weight/Height Selector */
.unit-toggle {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.unit-btn {
    padding: 10px 30px;
    border: 2px solid #4caf50;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.unit-btn.active {
    background: #4caf50;
    color: white;
}

.weight-selector {
    text-align: center;
    margin: 30px 0;
}

.weight-value {
    font-size: 48px;
    color: #2d2d2d;
    margin-bottom: 20px;
}

.weight-value .unit {
    font-size: 24px;
    color: #666;
}

.slider {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 10px;
    outline: none;
    margin: 20px 0;
}

.slider::-webkit-slider-thumb {
    appearance: none;
    width: 30px;
    height: 30px;
    background: #4caf50;
    border-radius: 50%;
    cursor: pointer;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 14px;
}

.slider-hint {
    color: #999;
    font-size: 12px;
    margin-top: 10px;
}

/* Testimonial */
.fire-emoji {
    font-size: 24px;
}

.testimonial-header {
    color: #e91e63;
    font-weight: bold;
    margin-bottom: 20px;
}

.testimonial-image {
    margin: 30px 0;
    text-align: center;
}

.transformation-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.before-after p {
    color: #666;
    font-style: italic;
}

.testimonial-card {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 15px;
    margin: 20px 0;
}

.stars {
    color: #ffc107;
    font-size: 20px;
    margin-bottom: 10px;
}

.testimonial-name {
    font-weight: bold;
    color: #2d2d2d;
    margin-bottom: 10px;
}

.testimonial-text {
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

/* Info Boxes */
.info-box {
    background: #e3f2fd;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    border-left: 4px solid #2196f3;
}

.info-box p {
    color: #1565c0;
    line-height: 1.6;
    margin-bottom: 10px;
}

.info-box ul {
    margin-left: 20px;
    color: #1565c0;
}

.info-box li {
    margin: 8px 0;
}

/* Diagram */
.diagram-image {
    text-align: center;
    margin: 20px 0;
}

.info-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.diagram {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 15px;
    margin: 20px 0;
}

.diagram-text {
    font-size: 16px;
    color: #333;
    text-align: center;
    line-height: 2;
}

.section-title {
    border: 2px solid #2d2d2d;
    padding: 15px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 20px;
}

/* Results Page */
.results-page h2 {
    font-size: 20px;
    margin-bottom: 30px;
}

.bmi-section {
    margin: 30px 0;
}

.bmi-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.warning {
    color: #ff9800;
    font-weight: bold;
    margin: 10px 0;
}

.bmi-bar {
    position: relative;
    height: 30px;
    background: linear-gradient(90deg, #4caf50 0%, #ffeb3b 25%, #ff9800 50%, #f44336 75%);
    border-radius: 15px;
    margin: 15px 0;
}

.bmi-indicator {
    position: absolute;
    top: -10px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid #2d2d2d;
}

.bmi-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #666;
}

.warning-box {
    background: #fff3cd;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    border-left: 4px solid #ff9800;
}

.warning-box p {
    color: #856404;
    line-height: 1.6;
    margin-bottom: 10px;
}

.warning-signs {
    background: #f8d7da;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    border-left: 4px solid #f44336;
}

.warning-signs p {
    color: #721c24;
    line-height: 1.8;
    margin-bottom: 8px;
}

.success-box {
    background: #d4edda;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    border-left: 4px solid #4caf50;
}

.success-box p {
    color: #155724;
    line-height: 1.6;
    margin-bottom: 10px;
}

.transformation {
    margin: 30px 0;
}

.transformation h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.transformation-images {
    background: #f5f5f5;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.btn-final {
    font-size: 22px;
    padding: 20px;
}

/* Disclaimer Box */
.disclaimer-box {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 20px;
    margin: 30px 0 20px 0;
}

.disclaimer-text {
    font-size: 13px;
    color: #856404;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

/* Footer Links */
.footer-links {
    background: #f5f5f5;
    padding: 25px 20px;
    border-radius: 12px;
    margin-top: 20px;
    text-align: center;
}

.footer-links p {
    color: #666;
    font-size: 13px;
    margin: 10px 0;
}

.legal-links {
    margin: 15px 0;
}

.legal-links a {
    color: #2d7a3e;
    text-decoration: none;
    font-size: 13px;
    margin: 0 5px;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #4caf50;
    text-decoration: underline;
}

.contact-info {
    font-size: 12px;
    color: #999;
}

/* Checkout Page Styles */
.checkout-page h1 {
    font-size: 26px;
    margin-bottom: 30px;
}

.before-after-section {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 30px 0;
    flex-wrap: wrap;
}

.comparison-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 280px;
}

.comparison-image {
    width: 100%;
    height: 300px;
    object-fit: contain;
    border-radius: 12px;
    background: #f5f5f5;
    margin-bottom: 15px;
}

.comparison-text {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
}

.highlight-red {
    color: #f44336;
}

.highlight-green {
    color: #4caf50;
}

.metabolism-comparison {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.metabolism-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 280px;
}

.circle-progress {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    position: relative;
}

.red-progress {
    background: conic-gradient(#f44336 0deg 68deg, #e0e0e0 68deg 360deg);
}

.green-progress {
    background: #4caf50;
}

.circle-progress::before {
    content: '';
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 50%;
    position: absolute;
}

.progress-number {
    font-size: 32px;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.metabolism-label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.plan-info {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: left;
}

.plan-info h2 {
    font-size: 22px;
    margin-bottom: 15px;
    text-align: left;
}

.plan-info h3 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 15px;
    text-align: left;
}

.plan-info p {
    color: #333;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.plan-features li {
    color: #333;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 10px;
    position: relative;
}

.plan-features li::before {
    content: '•';
    position: absolute;
    left: -10px;
    color: #4caf50;
    font-size: 20px;
}

.bonus-text {
    font-weight: bold;
    color: #2d7a3e;
    margin-top: 20px;
}

.pricing-section {
    margin: 40px 0;
    position: relative;
}

.best-seller-badge {
    background: linear-gradient(135deg, #2d7a3e 0%, #4caf50 100%);
    color: white;
    text-align: center;
    padding: 12px;
    font-weight: bold;
    border-radius: 12px 12px 0 0;
    font-size: 16px;
}

.pricing-card {
    background: white;
    border: 3px solid #4caf50;
    border-radius: 0 0 12px 12px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.3);
}

.pricing-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.radio-input {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.pricing-details {
    flex: 1;
}

.pricing-details h3 {
    font-size: 20px;
    margin: 0 0 5px 0;
    color: #2d2d2d;
}

.payment-type {
    color: #4caf50;
    font-size: 15px;
    margin: 0;
}

.pricing-amount {
    text-align: right;
}

.discount {
    display: block;
    font-size: 13px;
    color: #f44336;
    font-weight: 600;
}

.price {
    display: block;
    font-size: 32px;
    font-weight: bold;
    color: #2d2d2d;
}

.testimonials-section {
    margin: 40px 0;
}

.testimonials-section h2 {
    font-size: 24px;
    margin-bottom: 30px;
}

.testimonial-result {
    text-align: center;
    margin: 30px 0;
}

.result-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.trust-logo, .guarantee-badge {
    width: 150px;
    height: auto;
    object-fit: contain;
}

.guarantee-text {
    text-align: center;
    margin: 30px 0;
}

.guarantee-text h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.guarantee-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.support-email {
    color: #4caf50;
    font-weight: 600;
}

.customer-reviews {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.review-card {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e0e0e0;
    object-fit: cover;
}

.stars {
    color: #ffc107;
    font-size: 16px;
}

.reviewer-name {
    font-weight: bold;
    color: #2d2d2d;
    margin: 5px 0 0 0;
}

.review-text {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

.final-cta {
    margin: 50px 0 30px 0;
}

/* Legal Content Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    color: #2d7a3e;
    font-size: 32px;
    margin-bottom: 20px;
}

.legal-content h2 {
    color: #2d2d2d;
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: left;
}

.legal-content p {
    color: #333;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: left;
}

.legal-content ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.legal-content li {
    color: #333;
    line-height: 1.8;
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    .content {
        padding: 30px 20px;
    }

    h1 {
        font-size: 22px;
        line-height: 1.4;
    }
    
    h2 {
        font-size: 20px;
    }
    
    .subtitle {
        font-size: 14px;
    }
    
    .checkout-page h1 {
        font-size: 20px;
    }
    
    .comparison-card {
        min-width: 100%;
    }
    
    .metabolism-card {
        min-width: 100%;
    }
    
    .plan-info {
        padding: 20px;
    }
    
    .plan-info h2 {
        font-size: 18px;
    }
    
    .plan-info h3 {
        font-size: 16px;
    }
    
    .pricing-header {
        flex-wrap: wrap;
    }
    
    .pricing-amount {
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }
    
    .trust-badges {
        gap: 20px;
    }
    
    .trust-logo, .guarantee-badge {
        width: 120px;
    }
    
    .review-card {
        padding: 15px;
    }

    .option-btn {
        font-size: 15px;
        padding: 15px;
    }
    
    .emoji {
        font-size: 24px;
    }
    
    .arrow {
        font-size: 20px;
    }

    .weight-value {
        font-size: 36px;
    }
    
    .disclaimer-text {
        font-size: 11px;
        padding: 15px;
    }
    
    .footer-links {
        padding: 20px 15px;
    }
    
    .legal-links a {
        font-size: 11px;
        display: inline-block;
        margin: 5px 3px;
    }
    
    .contact-info {
        font-size: 11px;
    }
    
    .main-image {
        max-width: 100%;
        border-radius: 12px;
    }
    
    .btn-continue {
        font-size: 18px;
        padding: 16px;
    }
    
    .name-input {
        font-size: 15px;
        padding: 16px;
    }
    
    .checkbox-option {
        padding: 15px;
        font-size: 14px;
    }
    
    .checkbox-input {
        width: 20px;
        height: 20px;
    }
    
    .info-text {
        font-size: 13px;
    }
    
    .attention {
        font-size: 13px;
    }
    
    .card {
        padding: 20px 10px;
    }
    
    .badge {
        padding: 20px;
        margin: 15px 0;
    }
    
    .badge h2 {
        font-size: 20px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .diagram {
        padding: 20px;
    }
    
    .diagram-text {
        font-size: 14px;
    }
    
    .info-box, .warning-box, .warning-signs, .success-box {
        padding: 15px;
        font-size: 13px;
    }
    
    .bmi-labels {
        font-size: 10px;
    }
    
    .slider-labels {
        font-size: 12px;
    }
    
    .unit-btn {
        padding: 8px 20px;
        font-size: 14px;
    }
    
    .legal-content h1 {
        font-size: 26px;
    }
    
    .legal-content h2 {
        font-size: 18px;
    }
    
    .legal-content p, .legal-content li {
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    h1 {
        font-size: 20px;
    }
    
    .option-btn {
        font-size: 14px;
        padding: 12px;
    }
    
    .weight-value {
        font-size: 32px;
    }
    
    .btn-continue {
        font-size: 16px;
        padding: 14px;
    }
    
    .legal-links a {
        font-size: 10px;
        display: block;
        margin: 8px 0;
    }
    
    .disclaimer-text {
        font-size: 10px;
    }
}

@media (min-width: 601px) and (max-width: 900px) {
    .container {
        max-width: 700px;
    }
    
    h1 {
        font-size: 26px;
    }
    
    .option-btn {
        font-size: 17px;
        padding: 18px;
    }
}

@media (min-width: 901px) {
    .container {
        max-width: 800px;
    }
}
