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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
}

/* Pages */
.page {
    display: none;
    min-height: 100vh;
    position: relative;
    background-image: url('../images/img.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.page.active {
    display: flex;
    flex-direction: column;
}

.background-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.3), rgba(0,0,0,0.1));
    z-index: 1;
}

#questionPage .background-overlay,
#resultPage .background-overlay,
#successPage .background-overlay {
    background: rgba(0,0,0,0.4);
}

/* Header */
.header {
    position: relative;
    z-index: 10;
    padding: 1.5rem 2rem;
    text-align: right;
    color: white;
}

.tagline {
    font-size: 0.875rem;
    font-weight: 300;
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 2rem;
}

.main-content.center {
    justify-content: center;
}

.content-box {
    max-width: 36rem;
    color: white;
}

.title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.benefits-list .number {
    color: #fbbf24;
    margin-right: 0.5rem;
}

/* Buttons */
.btn-start {
    background: linear-gradient(to right, #ec4899, #db2777);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(236, 72, 153, 0.3);
}

.btn-start:hover {
    background: linear-gradient(to right, #db2777, #be185d);
    transform: scale(1.05);
}

/* Bonuses Section */
.bonuses-section {
    margin-top: 3rem;
}

.bonuses-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: #d1d5db;
}

.bonus-card {
    width: 12rem;
    height: 8rem;
    background: linear-gradient(331deg, rgb(141, 32, 83), rgb(230, 147, 186));
    border-radius: 0.5rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.bonus-card:hover {
    transform: scale(1.05);
}

.bonus-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.1), rgba(0,0,0,0.5));
}

.bonus-icon {
    position: absolute;
    inset: 0;
    background-image: url('https://cdn.mrqz.me/img/price.51764833.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.3;
}

.bonus-text {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    color: white;
    font-weight: 500;
    z-index: 10;
}

.lock-icon {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: white;
    border-radius: 9999px;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.lock-icon svg {
    color: #374151;
}

/* Footer */
.footer {
    position: relative;
    z-index: 10;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: white;
}

.phone {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.company {
    font-size: 0.875rem;
    color: #d1d5db;
}

.company-small {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    text-align: center;
}

.powered-by {
    font-size: 0.75rem;
    color: #9ca3af;
}

.powered-by span {
    font-weight: 500;
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.2);
    position: relative;
    z-index: 10;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(to right, #ec4899, #db2777);
    transition: width 0.5s;
    width: 20%;
}

/* Back Button */
.btn-back {
    background: none;
    border: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.btn-back:hover {
    color: #f9a8d4;
}

.btn-back.hidden {
    visibility: hidden;
}

/* Question Container */
.question-container {
    max-width: 48rem;
    width: 100%;
}

.question-counter {
    text-align: center;
    color: rgba(255,255,255,0.8);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.question-text {
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.3;
}

.options-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.option-btn {
    width: 100%;
    padding: 1.25rem;
    border-radius: 0.75rem;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    background: rgba(255,255,255,0.9);
    color: #1f2937;
}

.option-btn:hover {
    background: white;
    transform: scale(1.02);
}

.option-btn.selected {
    background: linear-gradient(to right, #ec4899, #db2777);
    color: white;
    transform: scale(1.02);
    box-shadow: 0 10px 15px -3px rgba(236, 72, 153, 0.3);
}

.btn-next {
    display: block;
    margin: 0 auto;
    padding: 1.5rem 3rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-next:disabled {
    background: #9ca3af;
    color: #e5e7eb;
    cursor: not-allowed;
}

.btn-next:not(:disabled) {
    background: linear-gradient(to right, #ec4899, #db2777);
    color: white;
    box-shadow: 0 10px 15px -3px rgba(236, 72, 153, 0.3);
}

.btn-next:not(:disabled):hover {
    background: linear-gradient(to right, #db2777, #be185d);
    transform: scale(1.05);
}

/* Result Card */
.result-card {
    background: white;
    border-radius: 1.5rem;
    padding: 3rem;
    max-width: 48rem;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.result-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
    color: #111827;
}

.result-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 2rem;
}

.benefits-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(to right, #fce7f3, #fbcfe8);
    border-radius: 0.5rem;
}

.benefit-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    background: linear-gradient(to right, #ec4899, #db2777);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    color: white;
}

.benefit-card span {
    color: #1f2937;
    font-weight: 500;
}

/* Form */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.required {
    color: #ec4899;
}

.form-group input {
    width: 100%;
    padding: 1.25rem 1rem;
    border-radius: 0.75rem;
    border: 2px solid #e5e7eb;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #ec4899;
}

/* intl-tel-input styles */
.iti {
    width: 100%;
}

.iti__tel-input {
    width: 100%;
    padding: 1.25rem 1rem;
    padding-left: 100px !important;
    border-radius: 0.75rem;
    border: 2px solid #e5e7eb;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.iti__tel-input:focus {
    outline: none;
    border-color: #ec4899;
}

.iti__country-container {
    padding-left: 0.75rem;
}

.iti__selected-dial-code {
    font-size: 1rem;
    color: #374151;
}

.iti__dropdown-content {
    border-radius: 0.75rem;
    border: 2px solid #e5e7eb;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.iti__search-input {
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 2px solid #e5e7eb;
}

.iti__search-input:focus {
    outline: none;
    border-color: #ec4899;
}

.btn-submit {
    width: 100%;
    padding: 1.5rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    background: linear-gradient(to right, #ec4899, #db2777);
    color: white;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(236, 72, 153, 0.3);
    margin-bottom: 1rem;
}

.btn-submit:hover {
    background: linear-gradient(to right, #db2777, #be185d);
    transform: scale(1.02);
}

.privacy-text {
    font-size: 0.75rem;
    color: #6b7280;
    text-align: center;
}

.privacy-text a {
    color: #ec4899;
    text-decoration: underline;
}

/* Success Page */
.success-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 9999px;
    background: linear-gradient(to right, #ec4899, #db2777);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.success-icon svg {
    color: white;
}

.success-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
    color: #111827;
}

.success-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 2rem;
}

.success-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}

.success-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #fce7f3;
    border-radius: 0.5rem;
}

.success-number {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    background: #ec4899;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.success-benefit span {
    color: #1f2937;
    font-weight: 500;
}

.contact-info {
    text-align: center;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.contact-info strong {
    color: #111827;
}

.btn-restart {
    display: block;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    background: linear-gradient(to right, #ec4899, #db2777);
    color: white;
    transition: all 0.3s;
}

.btn-restart:hover {
    background: linear-gradient(to right, #db2777, #be185d);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem 1.5rem;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-banner p {
    font-size: 0.875rem;
    color: #374151;
    flex: 1;
    min-width: 300px;
}

.cookie-banner a {
    color: #ec4899;
    text-decoration: underline;
}

.btn-cookie {
    padding: 0.5rem 2rem;
    border-radius: 0.375rem;
    background: #fce7f3;
    color: #db2777;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-cookie:hover {
    background: #fbcfe8;
}

/* Responsive */
@media (max-width: 768px) {
    .title {
        font-size: 2rem;
    }

    .question-text {
        font-size: 1.75rem;
    }

    .result-title,
    .success-title {
        font-size: 1.75rem;
    }

    .result-card {
        padding: 2rem 1.5rem;
    }

    .main-content {
        justify-content: center;
    }

    .footer {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner p {
        min-width: auto;
    }
}