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

html {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

body.has-banner {
    padding-top: 90px;
}

@media (max-width: 768px) {
    body.has-banner {
        padding-top: 120px;
    }
}

.page-logo {
    width: 50%;
    max-width: 150px;
    height: auto;
    margin: 20px auto;
    display: block;
    text-align: center;
}

.container {
    background: white;
    border-radius: 0;
    box-shadow: none;
    max-width: 600px;
    width: 100%;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    overflow-x: hidden;
}

.payment-container {
    max-width: 900px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.progress-container {
    padding: 30px 40px 20px;
    background: transparent;
    border-radius: 0;
    border-bottom: none;
    position: relative;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e9ecef !important;
    border-radius: 4px;
    overflow: visible;
    margin-bottom: 30px;
    position: relative;
    z-index: 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #000000, #000000);
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 4%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.progress-checkpoints {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.progress-checkpoint {
    position: absolute;
    top: 50%;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #e9ecef;
    border: 3px solid #e9ecef;
    transition: all 0.3s ease;
    flex-shrink: 0;
    transform: translate(-50%, -50%);
}

.progress-checkpoint:nth-child(1) {
    left: 0%;
}

.progress-checkpoint:nth-child(2) {
    left: 20%;
}

.progress-checkpoint:nth-child(3) {
    left: 40%;
}

.progress-checkpoint:nth-child(4) {
    left: 60%;
}

.progress-checkpoint:nth-child(5) {
    left: 80%;
}

.progress-checkpoint:nth-child(6) {
    left: 100%;
}

.progress-checkpoint.completed {
    background: #000000;
    border-color: #000000;
    transform: translate(-50%, -50%) scale(1.2);
}

.progress-checkpoint.active {
    background: #000000;
    border-color: #000000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15);
    transform: translate(-50%, -50%) scale(1.1);
}

.progress-text {
    text-align: center;
    font-weight: 600;
    color: #495057;
    font-size: 18px;
}

.step-container {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.step {
    display: none;
    text-align: center;
}

.step.active {
    display: block;
    padding-bottom: 100px; /* Space for sticky button */
}

.step-header {
    margin-bottom: 30px;
}

.step-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-title.first-question-title {
    text-transform: none;
}

.step-title-normal .step-title {
    text-transform: none;
}

.text-blue {
    color: #2563eb;
}
.step.step-dark .text-blue {
    color: #60a5fa;
}

.step-subtitle {
    font-size: 18px;
    color: #000000;
    margin-bottom: 30px;
    line-height: 1.6;
    text-transform: none;
}

.step-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    min-height: 200px;
    border-radius: 0;
    margin: 20px auto;
    display: block;
    box-shadow: none;
    transition: transform 0.3s ease;
    object-fit: contain;
    background: transparent;
}

.step-image:hover {
    transform: scale(1.02);
}

.first-step-image {
    max-width: 600px;
    margin: 20px auto;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.sources-section {
    margin-top: 0;
    text-align: center;
}

.sources-title {
    font-size: 1.5em;
    font-weight: bold;
    color: #6c757d;
    margin-bottom: 0;
    text-transform: uppercase;
}

.sources-image {
    max-width: 600px;
    margin: 0 auto;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.sources-text {
    text-align: left;
    font-size: 1em;
    line-height: 1.6;
    color: #000000;
    margin-top: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    white-space: pre-line;
    font-weight: normal;
    padding-left: 40px;
    padding-right: 40px;
}

.sources-pmid-line {
    color: #9ca3af;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.option {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
    color: #495057;
}

.option:hover {
    background: #e3f2fd;
    border-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.option:active {
    background: #f8f9fa !important;
    transform: translateY(0) !important;
    border-color: #e9ecef !important;
}

.option.selected {
    background: linear-gradient(135deg, #000000, #000000) !important;
    color: white !important;
    border-color: #000000 !important;
    transform: none !important;
}

.option.selected:hover,
.option.selected:active,
.option.selected:focus {
    background: linear-gradient(135deg, #000000, #000000) !important;
    color: white !important;
    border-color: #000000 !important;
    transform: none !important;
}

/* Step dark background (questionnaire) */
.step.step-dark {
    background: #000;
    color: #fff;
    margin: 0 -20px;
    padding: 24px 20px 100px;
}
.step.step-dark .step-title,
.step.step-dark .step-subtitle,
.step.step-dark .step-banner-small,
.step.step-dark .step-date-highlight { color: #fff; }
.step.step-dark .step-title-html { color: #fff; }
.step.step-dark .text-green { color: #22c55e; }
.step.step-dark .button { background: #fff; color: #000; }

/* Rating options (1-5 in a row) */
.options-rating {
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.option-rating {
    min-width: 48px;
    padding: 16px;
    text-align: center;
}
.option-rating .rating-number { font-size: 1.2em; font-weight: 700; }
.rating-labels {
    display: flex;
    justify-content: space-between;
    max-width: 400px;
    margin: 8px auto 0;
    font-size: 14px;
    color: #666;
}
.step.step-dark .rating-labels { color: #aaa; }

/* Small banner above title */
.step-banner-small {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: #666;
}
.step.step-dark .step-banner-small { color: #aaa; }

/* Green highlight text */
.text-green { color: #22c55e; }

/* Progress bar step (Connecting to the database) */
.progress-bar-subtitle {
    font-size: 14px;
    margin: 16px 0 8px;
    color: #999;
}
.step.step-dark .progress-bar-subtitle { color: #aaa; }
.progress-bar-container {
    height: 12px;
    background: #e9ecef;
    border-radius: 6px;
    overflow: hidden;
    margin: 8px 0;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.step.step-dark .progress-bar-container { background: #333; }
.progress-bar-fill {
    height: 100%;
    background: #22c55e;
    transition: width 0.1s linear;
}
.progress-bar-percent {
    font-size: 18px;
    font-weight: 700;
    margin-top: 4px;
}

/* Step video */
.step-video {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    margin: 16px auto;
    display: block;
}

/* Testimonial inline / reviews */
.step-testimonial-inline {
    text-align: center;
    margin: 16px 0;
    font-size: 15px;
    line-height: 1.5;
}
.step-testimonial-inline .testimonial-author { font-weight: 600; margin-bottom: 4px; }
.step-testimonial-inline .testimonial-stars { color: #f59e0b; margin: 4px 0; }
.step-reviews-title { font-size: 1em; margin: 12px 0 8px; }
.step-reviews-list { text-align: left; max-width: 480px; margin: 0 auto 20px; }
.review-item { margin-bottom: 16px; padding: 12px; background: #f5f5f5; border-radius: 8px; font-size: 14px; }
.step.step-dark .review-item { background: #222; }

/* Date and badge inline */
.step-date-highlight { font-size: 1em; margin: 8px 0; font-weight: 600; }
.step-header-inline { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px; }
.step-badge-green {
    background: #22c55e;
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}
.step-subtitle-html { margin: 16px auto; max-width: 480px; text-align: left; font-size: 15px; line-height: 1.6; }
.step.step-dark .step-subtitle-html { color: #ddd; }

.step-source {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
    margin-bottom: 16px;
}
.step.step-dark .step-source { color: #aaa; }

@media (max-width: 768px) {
    .option:hover {
        background: #f8f9fa !important;
        border-color: #e9ecef !important;
        transform: none !important;
        box-shadow: none !important;
    }
    
    .option:active {
        background: #f8f9fa !important;
        border-color: #e9ecef !important;
    }
    
    .option:focus {
        background: #f8f9fa !important;
        border-color: #e9ecef !important;
        outline: none !important;
    }
}

.button {
    background: linear-gradient(135deg, #000000, #000000);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
    width: fit-content;
    max-width: calc(100% - 40px);
}

.button:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.button:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: translateX(-50%);
    box-shadow: none;
}

@media (max-width: 768px) {
    .button:hover {
        transform: translateY(-2px);
    }
    
    .button:disabled {
        transform: none;
    }
}

.info-content {
    text-align: left;
    margin: 30px 0;
    line-height: 1.8;
    color: #495057;
}

.info-content p {
    margin-bottom: 15px;
}

.testimonial {
    background: #f8f9fa;
    border-left: 4px solid #000000;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
}

.testimonial-author {
    text-align: right;
    margin-top: 10px;
    font-weight: 600;
    color: #000000;
}

.analyzing-container {
    text-align: center;
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-height: calc(100vh - 150px);
    overflow: hidden;
}

.progress-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: conic-gradient(#000000 0deg, #e9ecef 0deg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    position: relative;
    flex-shrink: 0;
}

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

.progress-percentage {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    z-index: 1;
}

.analyzing-steps {
    text-align: left;
    max-width: 400px;
    margin: 0 auto 10px;
    flex-shrink: 0;
}

.analyzing-step {
    display: flex;
    align-items: center;
    margin: 8px 0;
    opacity: 0.5;
    transition: opacity 0.5s ease;
    font-size: 14px;
}

.analyzing-step.active {
    opacity: 1;
    color: #000000;
    font-weight: 600;
}

.analyzing-step.completed {
    opacity: 1;
    color: #28a745;
}

.analyzing-step::before {
    content: '○';
    margin-right: 15px;
    font-size: 20px;
}

.analyzing-step.active::before {
    content: '●';
}

.analyzing-step.completed::before {
    content: '✓';
    color: #28a745;
}

.analyzing-comments {
    margin-top: 10px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 0.5s ease;
    flex-shrink: 0;
}

.analyzing-comment {
    background: #f8f9fa;
    border-left: 4px solid #000000;
    padding: 12px 15px;
    border-radius: 0 10px 10px 0;
    text-align: left;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.comment-author {
    font-weight: 600;
    color: #000000;
    font-size: 13px;
}

.comment-rating {
    font-weight: 600;
    color: #000000;
    font-size: 12px;
    font-style: italic;
}

.comment-text {
    color: #333;
    line-height: 1.4;
    font-size: 12px;
    margin: 0;
    font-style: italic;
}

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

.email-form {
    max-width: 400px;
    margin: 0 auto;
}

.email-input {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 16px;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: #000000;
}

.privacy-notice {
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.4;
}

.payment-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.improvements-section {
    text-align: center;
    padding: 40px 20px;
    margin: 40px 0;
}

.improvements-title {
    font-size: 2em;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.improvements-subtitle {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.5;
}

.improvements-date {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 25px;
}

.date-highlight-improvements {
    font-weight: 600;
    color: #0066cc;
}

.improvements-video {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    display: block;
}

@media (max-width: 768px) {
    .improvements-section {
        padding: 30px 15px;
        margin: 30px 0;
    }
    
    .improvements-title {
        font-size: 1.6em;
        margin-bottom: 12px;
    }
    
    .improvements-subtitle {
        font-size: 1em;
        margin-bottom: 8px;
    }
    
    .improvements-date {
        font-size: 1.1em;
        margin-bottom: 20px;
    }
    
    .improvements-video {
        max-width: 100%;
        border-radius: 10px;
    }
}

.fixed-discount-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    padding: 15px 20px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.banner-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.banner-label {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.banner-timer {
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
    line-height: 1;
}

.banner-button {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.banner-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.banner-button:active {
    transform: translateY(0);
}

/* Super discount landing page */
body.super-discount-page {
    background: #000;
    padding: 0;
    margin: 0;
    min-height: 100vh;
    display: block;
    align-items: stretch;
    justify-content: flex-start;
}
.super-discount-wrapper {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    margin: 0;
    margin-left: calc(-50vw + 50%);
    padding: 0;
    background: #000;
    display: grid;
    grid-template-rows: minmax(0, auto);
    grid-template-columns: 1fr;
}
.super-discount-wrapper > * {
    grid-area: 1 / 1;
}
.super-discount-image {
    width: auto;
    max-width: 75%;
    height: 100vh;
    max-height: 100vh;
    object-fit: contain;
    object-position: center center;
    display: block;
    align-self: start;
    justify-self: center;
    margin: 0;
    padding: 0;
}
.super-discount-content {
    align-self: end;
    padding: 24px 20px 40px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: transparent;
}
.super-discount-text {
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
    white-space: pre-line;
    background: transparent;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.super-discount-title {
    font-weight: bold;
    font-size: 1.35rem;
}
.super-discount-button {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 16px 64px;
    min-width: 280px;
    font-size: 1.2em;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    text-align: center;
}
.super-discount-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
    color: #fff;
}

@media (max-width: 768px) {
    body.super-discount-page {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
    .super-discount-wrapper {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
    .super-discount-image {
        max-width: 95%;
        height: 100vh;
        max-height: 100vh;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    .super-discount-text {
        font-size: 0.95rem;
    }
    .fixed-discount-banner {
        padding: 12px 15px;
    }
    
    .banner-content {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .banner-text {
        text-align: center;
    }
    
    .banner-label {
        font-size: 12px;
    }
    
    .banner-timer {
        font-size: 28px;
    }
    
    .banner-button {
        width: 100%;
        padding: 12px 24px;
        font-size: 15px;
    }
}

.congratulations-container {
    text-align: center;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.congratulations-video {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.trust-badge {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-top: 20px;
}

.benefits-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin: 30px 0 20px 0;
}

.benefits-list-container {
    max-width: 500px;
    margin: 30px auto;
    padding: 0 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 64px;
    height: 64px;
    color: #000000;
}

.benefit-text {
    flex: 1;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.benefit-arrow {
    color: #28a745;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .congratulations-container {
        padding: 15px 0;
        gap: 20px;
    }
    
    .congratulations-video {
        max-width: 100%;
        border-radius: 10px;
    }
    
    .trust-badge {
        max-width: 100%;
    }
    
    .benefits-list-container {
        margin: 20px auto;
        padding: 0 15px;
    }
    
    .benefit-item {
        padding: 12px 0;
        gap: 12px;
    }
    
    .benefit-icon {
        width: 56px;
        height: 56px;
    }
    
    .benefit-icon svg {
        width: 56px;
        height: 56px;
    }
    
    .benefit-text {
        font-size: 14px;
    }
    
    .benefit-arrow {
        font-size: 18px;
    }
}

.five-minutes-container {
    text-align: center;
    padding: 20px 0;
    max-width: 600px;
    margin: 0 auto;
}

.five-minutes-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 20px 0;
    border-radius: 15px;
}

.five-minutes-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin: 25px 0 15px;
}

.five-minutes-note {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    padding: 0 20px;
    font-style: italic;
}

@media (max-width: 768px) {
    .five-minutes-container {
        padding: 15px 0;
    }
    
    .five-minutes-image {
        max-width: 100%;
        margin: 15px 0;
        border-radius: 10px;
    }
    
    .five-minutes-subtitle {
        font-size: 18px;
        margin: 20px 0 12px;
    }
    
    .five-minutes-note {
        font-size: 13px;
        padding: 0 15px;
    }
}

.final-adjustment-container {
    text-align: center;
    padding: 20px 0;
    max-width: 700px;
    margin: 0 auto;
}

.target-date {
    font-size: 18px;
    color: #333;
    margin: 10px 0 20px;
}

.date-highlight {
    font-weight: 600;
    color: #0066cc;
}

.four-weeks-video {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 20px 0 30px;
}

.compatibility-section {
    margin-top: 30px;
    padding: 20px;
}

.compatibility-title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.score-highlight {
    color: #28a745;
}

.gauge-container {
    position: relative;
    display: inline-block;
    margin: 20px 0;
}

.gauge-icon {
    width: 200px;
    height: 120px;
    display: block;
}

.gauge-percentage {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: #28a745;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
}

.compatibility-text {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-top: 25px;
    padding: 0 10px;
}

.compatibility-text strong {
    color: #000;
    font-weight: 600;
}

@media (max-width: 768px) {
    .final-adjustment-container {
        padding: 15px 0;
    }
    
    .target-date {
        font-size: 16px;
        margin: 8px 0 15px;
    }
    
    .four-weeks-video {
        max-width: 100%;
        margin: 15px 0 20px;
        border-radius: 10px;
    }
    
    .compatibility-section {
        margin-top: 20px;
        padding: 15px;
    }
    
    .compatibility-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .gauge-icon {
        width: 160px;
        height: 96px;
    }
    
    .gauge-percentage {
        font-size: 16px;
        padding: 6px 12px;
    }
    
    .compatibility-text {
        font-size: 14px;
        margin-top: 20px;
    }
}

.plans-container {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.plans-title {
    font-size: 1.8em;
    font-weight: bold;
    color: #000000;
    text-align: center;
    margin: 0 0 20px 0;
    text-transform: none;
    letter-spacing: 0;
}

.offer-timer {
    background: #dc3545;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95em;
    line-height: 1.5;
}

.timer-icon {
    font-size: 1.1em;
    display: flex;
    align-items: center;
}

.timer-text {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: inherit;
}

#countdownTimer {
    font-weight: 600;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

.payment-header {
    text-align: center;
    margin-bottom: 30px;
}

.payment-title {
    font-size: 2.5em;
    color: #000000;
    margin-bottom: 30px;
    font-weight: bold;
}

.payment-subtitle {
    font-size: 1.3em;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.payment-highlight {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 15px;
    font-weight: bold;
}

.success-rate {
    font-size: 1.1em;
    color: #28a745;
    font-weight: 600;
    margin-bottom: 20px;
}

.before-after-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 0 auto 30px;
    display: block;
    background: transparent;
}

.comparison-section {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: nowrap;
}

.comparison-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 250px;
}

.comparison-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.comparison-label {
    font-weight: bold;
    color: #333;
    font-size: 1em;
}

.comparison-value {
    color: #333;
    font-size: 1em;
    font-weight: normal;
}

.progress-bar {
    display: flex;
    gap: 0;
    margin-top: 5px;
    background: transparent;
}

.progress-segment {
    flex: 1;
    height: 20px;
    background-color: #e0e0e0;
    border-radius: 4px;
    min-width: 0;
    border: none;
}

.progress-segment.filled {
    background-color: #495057;
}

.discount-timer {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 15px;
    color: white;
}

.timer-label {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
}

.timer {
    font-size: 3em;
    font-weight: bold;
    font-family: 'Courier New', monospace;
}

.pricing-plans {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
    align-items: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-plan {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 600px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.pricing-plan:hover {
    border-color: #6c757d;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pricing-plan.selected {
    border-color: #007bff;
    background: #f8f9fa;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.2);
}

.pricing-plan.recommended {
    border-color: #007bff;
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #6c757d;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75em;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 1;
}

.pricing-plan.selected .plan-badge {
    background: #007bff;
}

.plan-radio {
    width: 24px;
    height: 24px;
    border: 2px solid #6c757d;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    background: white;
    transition: all 0.3s ease;
}

.pricing-plan.selected .plan-radio {
    border-color: #007bff;
    background: #007bff;
}

.pricing-plan.selected .plan-radio::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.plan-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.plan-duration {
    font-size: 1.1em;
    font-weight: bold;
    color: #9ca3af;
    margin: 0;
}

.pricing-plan.selected .plan-duration {
    color: #212529;
}

.plan-pricing {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9em;
    margin: 0;
}

.current-price {
    font-size: 1em;
    font-weight: normal;
    color: #9ca3af;
    margin: 0;
}

.pricing-plan.selected .original-price {
    color: #999;
}

.pricing-plan.selected .current-price {
    color: #212529;
}

.plan-daily-badge {
    background: #e9ecef;
    padding: 12px 16px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    flex-shrink: 0;
    min-width: 100px;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
}

.pricing-plan.selected .plan-daily-badge {
    background: #007bff;
}

.daily-original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.75em;
    margin-bottom: 4px;
}

.pricing-plan.selected .daily-original-price {
    color: rgba(255, 255, 255, 0.8);
}

.daily-current-price {
    color: #9ca3af;
    font-size: 0.85em;
    font-weight: 600;
    margin: 0;
}

.pricing-plan.selected .daily-current-price {
    color: white;
    font-weight: bold;
}

.guarantee-section-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 30px 0 20px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.guarantee-check {
    color: #007bff;
    font-size: 1.1em;
    font-weight: bold;
    margin-right: 4px;
}

.guarantee-text {
    color: #212529;
    font-size: 0.95em;
    font-weight: 500;
    white-space: nowrap;
}

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

.payment-button-main {
    background: #6c8ddb;
    color: white;
    border: none;
    padding: 20px 60px;
    font-size: 1.3em;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 16px 48px rgba(108, 141, 219, 0.5), 0 8px 24px rgba(108, 141, 219, 0.3);
    width: 100%;
    max-width: 500px;
    text-transform: none;
    letter-spacing: 0.5px;
}

.payment-button-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(108, 141, 219, 0.6), 0 12px 32px rgba(108, 141, 219, 0.4);
    background: #7a9de8;
}

.payment-button-main:active {
    transform: translateY(0);
    box-shadow: 0 12px 40px rgba(108, 141, 219, 0.5), 0 6px 20px rgba(108, 141, 219, 0.3);
}

/* Landpay super-discount variant (?super_discount=1) */
body.super-discount-version .offer-timer {
    background: #000;
}
body.super-discount-version .payment-button-main {
    background: #e74c3c;
    box-shadow: 0 16px 48px rgba(231, 76, 60, 0.5), 0 8px 24px rgba(231, 76, 60, 0.3);
}
body.super-discount-version .payment-button-main:hover {
    background: #c0392b;
    box-shadow: 0 20px 60px rgba(231, 76, 60, 0.6), 0 12px 32px rgba(231, 76, 60, 0.4);
}
body.super-discount-version .payment-button-main:active {
    box-shadow: 0 12px 40px rgba(231, 76, 60, 0.5), 0 6px 20px rgba(231, 76, 60, 0.3);
}
body.super-discount-version .pricing-plan.selected,
body.super-discount-version .pricing-plan.recommended {
    border-color: #e74c3c;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.2);
}
body.super-discount-version .pricing-plan.selected .plan-badge {
    background: #e74c3c;
}
body.super-discount-version .pricing-plan.selected .plan-radio {
    border-color: #e74c3c;
    background: #e74c3c;
}
body.super-discount-version .pricing-plan.selected .plan-daily-badge {
    background: #e74c3c;
}
body.super-discount-version .guarantee-check {
    color: #e74c3c;
}
body.super-discount-version .banner-button {
    background: #e74c3c;
}
body.super-discount-version .banner-button:hover {
    background: #c0392b;
}
.gift-discount-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 20px;
    margin-bottom: 25px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.gift-discount-banner img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}
.gift-discount-banner .gift-text {
    font-size: 0.95em;
    color: #333;
    font-weight: 500;
}
.gift-discount-banner .gift-strikethrough {
    text-decoration: line-through;
    color: #999;
}
.gift-discount-banner .gift-red {
    color: #e74c3c;
    font-weight: 600;
}

.subscription-notice {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 20px 0;
    margin: 20px 0;
    font-size: 0.75em;
    color: #9ca3af;
    text-align: center;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.payment-section {
    text-align: center;
    margin: 40px 0;
}

.payment-security {
    margin-bottom: 20px;
}

.security-label {
    font-size: 1.1em;
    font-weight: bold;
    color: #28a745;
    margin-bottom: 10px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.payment-icon {
    font-size: 2em;
}

.payment-button {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 1.3em;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.payment-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.benefits-section {
    margin: 40px 0;
    text-align: center;
}

.benefits-section h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.benefits-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 30px;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.2em;
}

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

.testimonials-section h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 30px;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.testimonial {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid #000000;
    margin-bottom: 0;
}

.testimonial-stars {
    color: #ffc107;
    font-size: 1.2em;
    margin-bottom: 8px;
    text-align: left;
    letter-spacing: 2px;
}

.testimonial-rating {
    font-weight: 600;
    color: #000;
    font-size: 15px;
    margin-bottom: 8px;
    font-style: italic;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 10px;
    line-height: 1.5;
}

.testimonial-author {
    font-weight: bold;
    color: #000000;
    margin-top: 5px;
}

.video-section {
    margin: 40px 0;
    text-align: center;
    padding: 20px 0;
}

.landing-video {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.video-sound-text {
    margin-top: 15px;
    font-size: 16px;
    color: #666;
    font-style: italic;
    font-weight: 500;
}

@media (max-width: 768px) {
    .landing-video {
        max-width: 100%;
        border-radius: 10px;
    }
}

.guarantee-container {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 30%);
    border-radius: 15px;
    padding: 30px 20px;
    margin: 30px auto;
    box-shadow: none;
    border: none;
    box-sizing: border-box;
    overflow: visible;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    position: relative;
}

.guarantee-section-new {
    text-align: center;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

.guarantee-badge {
    width: 675px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
    max-width: 100%;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.guarantee-title {
    font-size: 1.8em;
    font-weight: bold;
    color: #000000;
    margin: 0 0 5px 0;
    text-align: center;
}

.guarantee-subtitle {
    font-size: 1.1em;
    font-weight: normal;
    color: #000000;
    margin: 0 0 20px 0;
    text-align: center;
}

.guarantee-text {
    font-size: 0.95em;
    color: #333;
    line-height: 1.6;
    max-width: 100%;
    margin: 0 auto 30px;
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
    display: block;
    min-width: 0;
    overflow-wrap: anywhere;
    white-space: normal;
    overflow: visible;
}

.guarantee-link {
    color: #007bff;
    text-decoration: underline;
    font-weight: 500;
}

.guarantee-link:hover {
    color: #0056b3;
}

.payment-security-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 30px 0 20px;
    text-align: center;
}

.security-checkmark {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #007bff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

.security-label-text {
    font-size: 1em;
    font-weight: bold;
    color: #000000;
}

.payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.payment-methods-image {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.guarantee-section {
    background: #e8f5e8;
    border: 2px solid #28a745;
    border-radius: 15px;
    padding: 25px;
    margin: 40px 0;
    text-align: center;
}

.guarantee-section h3 {
    color: #28a745;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.guarantee-section p {
    color: #155724;
    line-height: 1.5;
}

.loading {
    text-align: center;
    padding: 20px;
    color: #000000;
    font-weight: 600;
}

.loading::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #000000;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    body {
        padding-left: 0;
        padding-right: 0;
    }
    
    .container {
        margin: 0;
        padding: 0;
        min-height: 90vh;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .container.payment-container {
        width: 100%;
        max-width: 100%;
        padding: 0;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .progress-container {
        padding: 15px 20px 10px;
    }
    
    .step-container {
        padding: 0;
        justify-content: flex-start;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .payment-page {
        padding: 0 10px;
        margin: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .container.payment-container {
        width: 100%;
        max-width: 100%;
        padding: 0;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .plans-container {
        margin: 0;
        padding: 30px 8px;
        border-radius: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .pricing-plans {
        margin: 30px 0;
        max-width: 100%;
        width: 100%;
        padding: 0;
    }
    
    .pricing-plan {
        border-radius: 0;
        margin: 0;
        max-width: 100%;
    }
    
    .step-header {
        margin-bottom: 15px;
        margin-top: 0;
        max-width: 100%;
        padding-left: 8px;
        padding-right: 8px;
        box-sizing: border-box;
    }
    
    .step-title {
        font-size: 24px;
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-word;
        padding-left: 4px;
        padding-right: 4px;
        box-sizing: border-box;
    }

    .step-title.step-title-html {
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-word;
    }

    .step-subtitle {
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-word;
        padding-left: 4px;
        padding-right: 4px;
        box-sizing: border-box;
    }

    .step-testimonial-inline {
        max-width: 100%;
        padding-left: 12px;
        padding-right: 12px;
        box-sizing: border-box;
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-word;
    }

    /* Pasos 7, 12, 21: evitar desborde en título, subtítulo y comentario */
    .step.step-dark .step-header {
        max-width: 100%;
        padding-left: 12px;
        padding-right: 12px;
        box-sizing: border-box;
    }

    .step.step-dark .step-title,
    .step.step-dark .step-title.step-title-html {
        font-size: 20px;
        line-height: 1.35;
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-word;
        padding-left: 0;
        padding-right: 0;
        box-sizing: border-box;
    }

    .step.step-dark .step-subtitle {
        font-size: 15px;
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-word;
        padding-left: 0;
        padding-right: 0;
        box-sizing: border-box;
    }

    .step.step-dark .step-testimonial-inline {
        font-size: 14px;
        max-width: 100%;
        padding-left: 12px;
        padding-right: 12px;
        box-sizing: border-box;
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-word;
    }

    .step.step-dark .step-testimonial-inline p {
        max-width: 100%;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .step.step-dark .step-header,
    .step.step-dark .step-title,
    .step.step-dark .step-subtitle,
    .step.step-dark .step-testimonial-inline {
        max-width: 100%;
        box-sizing: border-box;
    }

    .step.active {
        overflow-x: hidden;
        min-width: 0;
    }

    /* Contenedor del cuestionario en móvil para que no desborde */
    .step-container {
        overflow-x: hidden;
        max-width: 100%;
    }

    /* Pasos con fondo negro: sin margen negativo en móvil para que el ancho no desborde */
    .step.step-dark {
        margin-left: 0;
        margin-right: 0;
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .pricing-plans {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-plan {
        max-width: 100%;
        width: 100%;
        flex-wrap: nowrap;
        overflow: visible;
        align-items: center;
    }
    
    .plan-content {
        flex: 1;
        min-width: 0;
    }
    
    .plan-duration {
        white-space: nowrap;
        font-size: 0.95em;
    }
    
    .plan-pricing {
        white-space: nowrap;
        flex-wrap: nowrap;
    }
    
    .original-price,
    .current-price {
        white-space: nowrap;
        display: inline-block;
        font-size: 0.85em;
    }
    
    .daily-current-price {
        display: flex;
        flex-direction: column;
        align-items: center;
        line-height: 1.2;
    }
    
    .daily-price-amount {
        display: block;
    }
    
    .daily-price-label {
        display: block;
        font-size: 0.9em;
        margin-top: 2px;
    }
    
    .guarantee-section-top {
        gap: 4px;
        flex-wrap: nowrap;
        display: inline-flex;
    }
    
    .guarantee-check {
        font-size: 1em;
        margin-right: 2px;
    }
    
    .guarantee-text {
        font-size: 0.85em;
        white-space: nowrap;
    }
    
    .first-step-image {
        width: 100%;
        max-width: 100%;
        margin: 20px 0;
        margin-left: 0;
        margin-right: 0;
    }
    
    .step-image.first-step-image {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .step-container {
        padding-left: 0;
        padding-right: 0;
    }
    
    .step.active {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 100px; /* Space for sticky button */
    }
    
    .button {
        bottom: 10px; /* Closer to bottom on mobile */
        left: 20px;
        right: 20px;
        transform: translateX(0);
        width: calc(100% - 40px);
        max-width: none;
    }
    
    .options {
        padding-left: 8px;
        padding-right: 8px;
    }
    
    .step-subtitle {
        padding-left: 8px;
        padding-right: 8px;
    }
    
    .info-content {
        padding-left: 8px;
        padding-right: 8px;
    }
    
    .info-content p {
        padding-left: 0;
        padding-right: 0;
    }
    
    .info-content p::before {
        content: "• ";
        margin-right: 6px;
    }
    
    .info-content ul {
        list-style: none;
        padding-left: 0;
    }
    
    .info-content li {
        padding-left: 0;
        margin-bottom: 15px;
    }
    
    .info-content li::before {
        content: "• ";
        margin-right: 6px;
        font-weight: bold;
    }
    
    .info-content li:empty,
    .info-content li:has(only whitespace) {
        display: none;
    }
    
    .info-content li:only-child:empty {
        display: none;
    }
    
    .plan-daily-badge {
        max-width: none;
        width: auto;
        min-width: 100px;
        margin-top: 0;
        margin-left: 10px;
        flex-shrink: 0;
        clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .payment-title {
        font-size: 1.8em;
    }
    
    .analyzing-container {
        padding: 10px 0;
        max-height: calc(100vh - 120px);
    }
    
    .progress-circle {
        width: 120px;
        height: 120px;
        margin-bottom: 8px;
    }
    
    .progress-circle::before {
        width: 95px;
        height: 95px;
    }
    
    .progress-percentage {
        font-size: 24px;
    }
    
    .analyzing-steps {
        margin-bottom: 8px;
        max-width: 100%;
    }
    
    .analyzing-step {
        margin: 6px 0;
        font-size: 12px;
    }
    
    .analyzing-comments {
        margin-top: 8px;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .analyzing-comment {
        padding: 10px 12px;
    }
    
    .comment-author {
        font-size: 12px;
    }
    
    .comment-rating {
        font-size: 11px;
    }
    
    .comment-text {
        font-size: 11px;
        line-height: 1.3;
    }
    
.comparison-section {
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.comparison-column {
    min-width: 0;
    flex: 1;
    max-width: 45%;
}
    
    .before-after-image {
        max-width: 100%;
    }
    
    .timer {
        font-size: 2.5em;
    }
    
    .option {
        padding: 15px;
        font-size: 14px;
    }
    
    .button {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .step-image {
        max-width: 300px;
        margin: 15px auto;
    }
    
    .progress-circle {
        width: 150px;
        height: 150px;
    }
    
    .progress-circle::before {
        width: 120px;
        height: 120px;
    }
    
    .progress-percentage {
        font-size: 28px;
    }
}

/* Payment Modal Styles */
.payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.payment-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

.payment-modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    max-width: 540px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    z-index: 10001;
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin: auto;
    transform: translate(0, 0);
}

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

.payment-modal-header {
    position: relative;
    padding: 32px 32px 24px;
    border-bottom: 1px solid #f0f0f0;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border-radius: 24px 24px 0 0;
}

.payment-modal-header-content {
    text-align: center;
}

.payment-modal-icon {
    font-size: 48px;
    margin-bottom: 12px;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

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

.payment-modal-title {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
}

.payment-modal-subtitle {
    font-size: 15px;
    color: #666666;
    margin: 0;
    font-weight: 400;
}

.payment-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: #f5f5f5;
    border: none;
    color: #666666;
    cursor: pointer;
    padding: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.payment-modal-close:hover {
    background: #e8e8e8;
    color: #000000;
    transform: rotate(90deg);
}

.payment-modal-close svg {
    width: 18px;
    height: 18px;
}

.payment-modal-body {
    padding: 32px;
}

.payment-modal-summary {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.summary-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e8e8e8;
}

.summary-title {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    letter-spacing: -0.3px;
}

.summary-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.summary-item.summary-total {
    margin-top: 8px;
    padding-top: 20px;
    border-top: 2px solid #e8e8e8;
}

.summary-label {
    font-size: 15px;
    color: #666666;
    font-weight: 500;
}

.summary-value {
    font-size: 15px;
    color: #000000;
    font-weight: 600;
    text-align: right;
}

.summary-amount {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    letter-spacing: -0.5px;
}

.payment-form {
    margin-top: 0;
}

.form-section {
    margin-bottom: 24px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
}

.label-icon {
    font-size: 18px;
}

.card-element,
.stripe-input-element {
    padding: 18px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    min-height: 56px;
}

.card-element:focus-within,
.stripe-input-element:focus-within {
    border-color: #000000;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.08);
    outline: none;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-input {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus {
    border-color: #000000;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.08);
    outline: none;
}

.form-input::placeholder {
    color: #aab7c4;
}

/* Stripe input elements styling */
.stripe-input-element {
    padding: 18px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    min-height: 56px;
}

.stripe-input-element:focus-within {
    border-color: #000000;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.08);
    outline: none;
}

.stripe-input-element .InputElement {
    padding: 0;
    border: none;
    background: transparent;
}

.card-element .StripeElement--empty .InputElement::before,
.card-element .StripeElement--invalid .InputElement::before,
.card-element .StripeElement .InputElement::before,
.card-element .StripeElement .InputElement::after,
.card-element .InputElement::before,
.card-element .InputElement::after {
    display: none !important;
    content: none !important;
}

.card-element .StripeElement .InputElement,
.card-element .InputElement {
    background-image: none !important;
    padding-right: 16px !important;
}

/* Responsive form rows */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-group {
        width: 100%;
    }
}

/* New Payment Modal Styles - Completely Different Design */
.payment-modal-new {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
}

.payment-modal-overlay-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.payment-modal-content-new {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    max-width: 480px;
    width: 100%;
    max-height: calc(100vh - 40px);
    margin: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    z-index: 10001;
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.payment-modal-close-new {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f5f5f5;
    border: none;
    color: #666;
    font-size: 28px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.2s ease;
    z-index: 10;
}

.payment-modal-close-new:hover {
    background: #e8e8e8;
    color: #000;
    transform: rotate(90deg);
}

.payment-modal-header-new {
    padding: 40px 40px 20px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.payment-modal-title-new {
    font-size: 26px;
    font-weight: 700;
    color: #000;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
}

.payment-modal-subtitle-new {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.payment-summary-new {
    padding: 24px 40px;
    background: #f8f9fa;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.summary-row-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.summary-plan-row {
    padding-bottom: 6px;
}

.summary-plan-name {
    color: #666;
    font-size: 15px;
    font-weight: 500;
}

.summary-plan-original-price {
    color: #666;
    font-size: 15px;
    font-weight: 500;
}

.summary-discount-row {
    padding-top: 4px;
    padding-bottom: 12px;
}

.summary-discount-text {
    color: #999;
    font-size: 14px;
    font-weight: 400;
}

.summary-discount-amount {
    color: #0066cc;
    font-size: 14px;
    font-weight: 600;
}

.summary-separator {
    height: 1px;
    background: #e0e0e0;
    margin: 12px 0;
}

.summary-total-row {
    padding-top: 8px;
    padding-bottom: 4px;
}

.summary-total-label {
    color: #000;
    font-size: 18px;
    font-weight: 700;
}

.summary-total-amount {
    color: #000;
    font-size: 18px;
    font-weight: 700;
}

.summary-savings-row {
    padding-top: 4px;
}

.summary-period-text {
    color: #999;
    font-size: 13px;
    font-weight: 400;
}

.summary-savings-text {
    color: #0066cc;
    font-size: 13px;
    font-weight: 500;
    text-align: right;
}

.payment-form-new {
    padding: 30px 40px 40px;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}

.form-group-new {
    margin-bottom: 20px;
}

.form-group-half {
    flex: 1;
}

.form-label-new {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.form-input-new {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: #fff;
}

.form-input-new:focus {
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
    outline: none;
}

.form-input-new::placeholder {
    color: #aab7c4;
}

.stripe-element-container {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: #fff;
    transition: all 0.3s ease;
    min-height: 52px;
}

.stripe-element-container:focus-within {
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
    outline: none;
}

/* Hide all SVG icons in Stripe Elements */
.stripe-element-container svg,
.stripe-element-container * svg {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    position: absolute !important;
    left: -9999px !important;
}

.stripe-element-container .InputElement {
    padding: 0;
    border: none;
    background: transparent;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.form-row-new {
    display: flex;
    gap: 15px;
}

.card-errors-new {
    color: #dc3545;
    font-size: 14px;
    margin: 15px 0 8px;
    min-height: 20px;
    font-weight: 500;
}

.payment-error-hint {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    color: #664d03;
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 12px;
    padding: 12px 14px;
    border-radius: 8px;
}

.payment-dismiss-button-new {
    width: 100%;
    background: transparent;
    border: 1px solid #ccc;
    border-radius: 12px;
    color: #333;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    margin-top: 8px;
    padding: 14px 24px;
    transition: background 0.2s ease;
}

.payment-dismiss-button-new:hover {
    background: #f5f5f5;
}

.payment-submit-button-new {
    width: 100%;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.payment-submit-button-new:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.payment-submit-button-new:disabled {
    background: #9e9e9e;
    cursor: not-allowed;
    transform: none;
    opacity: 0.7;
}

.spinner-new {
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    animation: spin 0.8s linear infinite;
}

.payment-security-new {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

@media (max-width: 768px) {
    .payment-modal-new {
        padding: 10px;
        align-items: flex-start;
        padding-top: 20px;
    }
    
    .payment-modal-content-new {
        max-width: 100%;
        max-height: calc(100vh - 20px);
        border-radius: 16px;
        margin: 0;
    }
    
    .payment-modal-header-new {
        padding: 30px 20px 15px;
    }
    
    .payment-modal-title-new {
        font-size: 22px;
    }
    
    .payment-summary-new {
        padding: 20px;
    }
    
    .payment-form-new {
        padding: 20px;
        padding-bottom: 20px;
    }
    
    .form-group-new {
        margin-bottom: 15px;
    }
    
    .form-row-new {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-group-half {
        width: 100%;
    }
    
    .summary-row-new {
        font-size: 13px;
        padding: 6px 0;
    }
    
    .summary-plan-name,
    .summary-plan-original-price {
        font-size: 14px;
    }
    
    .summary-discount-text,
    .summary-discount-amount {
        font-size: 13px;
    }
    
    .summary-total-label,
    .summary-total-amount {
        font-size: 16px;
    }
    
    .summary-period-text,
    .summary-savings-text {
        font-size: 12px;
    }
    
    .payment-submit-button-new {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .guarantee-container {
        padding: 20px 15px;
        margin: 20px 0;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        position: relative;
    }
    
    .guarantee-section-new {
        width: 100%;
        padding: 0;
        overflow: visible;
    }
    
    .guarantee-text {
        font-size: 0.85em;
        padding: 0;
        line-height: 1.5;
        width: 100%;
        max-width: 100%;
        word-break: break-word;
        hyphens: auto;
        white-space: normal;
        overflow: visible;
        overflow-wrap: anywhere;
    }
    
    .guarantee-title {
        font-size: 1.5em;
    }
    
    .guarantee-subtitle {
        font-size: 1em;
    }
}

.card-errors {
    color: #dc3545;
    font-size: 14px;
    margin-top: 12px;
    margin-bottom: 0;
    min-height: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-errors::before {
    content: "⚠";
    font-size: 16px;
}

.payment-security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 13px;
    color: #666666;
    font-weight: 500;
}

.payment-security-badge svg {
    color: #28a745;
    flex-shrink: 0;
}

.payment-submit-button {
    width: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 18px 32px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: none;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

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

.payment-submit-button:hover:not(:disabled)::before {
    left: 100%;
}

.payment-submit-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

.payment-submit-button:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.payment-submit-button:disabled {
    background: #9e9e9e;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 0.7;
}

.button-icon {
    font-size: 18px;
    display: inline-block;
}

.spinner {
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.payment-note {
    margin-top: 20px;
    font-size: 12px;
    color: #999999;
    text-align: center;
    line-height: 1.5;
}

.payment-note a {
    color: #000000;
    text-decoration: underline;
}

/* Scrollbar styling for modal */
.payment-modal-content::-webkit-scrollbar {
    width: 8px;
}

.payment-modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.payment-modal-content::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.payment-modal-content::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

@media (max-width: 768px) {
    .payment-modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 20px;
    }
    
    .payment-modal-header {
        padding: 24px 20px 20px;
    }
    
    .payment-modal-body {
        padding: 24px 20px;
    }
    
    .payment-modal-title {
        font-size: 24px;
    }
    
    .payment-modal-subtitle {
        font-size: 14px;
    }
    
    .payment-modal-icon {
        font-size: 40px;
    }
    
    .payment-modal-summary {
        padding: 20px;
    }
    
    .summary-title {
        font-size: 16px;
    }
    
    .summary-label,
    .summary-value {
        font-size: 14px;
    }
    
    .summary-amount {
        font-size: 20px;
    }
    
    .payment-submit-button {
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .payment-modal-close {
        top: 16px;
        right: 16px;
        width: 32px;
        height: 32px;
    }
}
