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

:root {
    --primary: #0F172A;
    --primary-light: #1E293B;
    --accent: #3B82F6;
    --accent-hover: #2563EB;
    --success: #059669;
    --text-primary: #0F172A;
    --text-secondary: #64748B;
    --text-tertiary: #94A3B8;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --bg-tertiary: #F1F5F9;
    --border: #E2E8F0;
    --border-light: #F1F5F9;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Logo Styling */
.logo-main {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 32px;
    text-align: center;
}

/* Quiz Logo (Centered) */
.quiz-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--primary);
    text-align: center;
    padding: 16px 0;
    background: white;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Hero Simple */
.hero-simple {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 32px;
    background: radial-gradient(circle at top center, #f8fafc 0%, #ffffff 100%);
}

.hero-simple-content {
    max-width: 650px;
    text-align: center;
}

.hero-headline {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-subtext {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.badge-icon {
    color: var(--success);
    font-weight: 700;
    font-size: 16px;
}

.cta-wrapper {
    margin: 40px 0;
}

.cta-main {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 20px 48px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
}

.cta-main:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

.cta-note {
    margin-top: 20px;
    font-size: 15px;
    color: var(--text-secondary);
}

.price-badge {
    margin-top: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--accent);
}

.hero-benefits {
    margin-top: 24px;
    font-size: 15px;
    color: var(--text-tertiary);
}

.primary-btn {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.primary-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.25);
}

.btn-large {
    padding: 16px 40px;
    font-size: 17px;
}

.btn-full {
    display: block;
    width: 100%;
    text-align: center;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02), 0 10px 40px rgba(0, 0, 0, 0.04);
    width: 100%;
}

.card-header {
    margin-bottom: 24px;
}

.card-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-tertiary);
}

.visual-metrics {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: 10px;
}

.metric-label {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
}

.metric-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
}

/* Results/Transformations Section */
.results-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

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

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: var(--primary);
}

.section-header p {
    font-size: 17px;
    color: var(--text-secondary);
}

.transformations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.transformation-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.before-after-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
}

.before-image,
.after-image {
    position: relative;
    background: var(--bg-tertiary);
}

.image-label {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(15, 23, 42, 0.8);
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.transformation-placeholder {
    aspect-ratio: 3/4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.before-style {
    background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
}

.after-style {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
}

.silhouette {
    font-size: 120px;
    opacity: 0.3;
    filter: blur(2px);
}

.weight-label {
    position: absolute;
    bottom: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    color: var(--primary);
}

.transformation-info {
    padding: 24px;
}

.result-badge {
    display: inline-block;
    background: var(--success);
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.transformation-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
}

.transformation-info p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* How It Works */
.how-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
}

.step-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Included Section */
.included-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.included-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.included-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.item-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.item-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--primary);
}

.item-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.cta-box {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
}

.cta-box h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary);
}

.cta-box > p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    padding: 24px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
}

.faq-item p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: var(--primary);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.final-cta p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 28px;
}

.final-cta .primary-btn {
    background: white;
    color: var(--primary);
}

.final-cta .primary-btn:hover {
    background: var(--bg-secondary);
}

/* Footer */
.main-footer {
    background: var(--bg-secondary);
    padding: 48px 0 24px;
}

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

.footer-simple {
    display: flex;
    justify-content: space-between;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact p {
    font-size: 14px;
    color: var(--text-tertiary);
    margin-bottom: 4px;
}

.footer-legal {
    text-align: center;
    padding: 24px 0;
    border-bottom: 1px solid var(--border-light);
}

.footer-legal p {
    font-size: 13px;
    color: var(--text-tertiary);
    margin-bottom: 4px;
}

.footer-disclaimer {
    text-align: center;
    padding: 24px 0;
}

.footer-disclaimer p {
    font-size: 12px;
    color: var(--text-tertiary);
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-tertiary);
}

/* Quiz Styles */
.quiz-body {
    background: var(--bg-secondary);
    min-height: 100vh;
}

.quiz-progress-bar {
    position: fixed;
    top: 57px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--border-light);
    z-index: 99;
}

.quiz-progress-fill {
    height: 100%;
    background: var(--accent);
    transition: width 0.3s ease;
    width: 0%;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.3);
}

.quiz-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 24px;
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quiz-step {
    animation: fadeIn 0.3s ease;
    width: 100%;
}

.quiz-step.hidden {
    display: none;
}

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

.quiz-content {
    background: white;
    padding: 48px;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.step-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-tertiary);
    color: var(--text-tertiary);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.step-indicator::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 4px;
    background: var(--border-light);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.step-indicator[data-progress]::after {
    background: linear-gradient(to right, var(--accent) var(--progress), var(--border-light) var(--progress));
}

.quiz-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
    color: var(--primary);
}

.step-subtitle {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 15px;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.options-single {
    grid-template-columns: 1fr;
}

.option-card {
    background: var(--bg-secondary);
    border: 2px solid var(--border-light);
    padding: 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-size: 15px;
    font-weight: 500;
    color: var(--primary);
}

.option-card:hover {
    border-color: var(--accent);
    background: white;
}

.option-card.selected {
    border-color: var(--accent);
    background: rgba(59, 130, 246, 0.05);
}

.option-card small {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 400;
}

.input-group {
    position: relative;
    max-width: 300px;
    margin: 32px auto;
}

.input-group input {
    width: 100%;
    padding: 14px 60px 14px 16px;
    font-size: 16px;
    border: 2px solid var(--border);
    border-radius: 10px;
    outline: none;
    transition: border-color 0.2s;
    color: var(--primary);
}

.input-group input:focus {
    border-color: var(--accent);
}

.input-unit {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-tertiary);
    font-weight: 600;
    font-size: 14px;
}

.continue-btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 32px auto 0;
    padding: 14px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.continue-btn:hover {
    background: var(--accent-hover);
}

.privacy-note {
    max-width: 500px;
    margin: 24px auto;
    padding: 16px;
    background: var(--bg-tertiary);
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-secondary);
    text-align: center;
}

.loading-content {
    text-align: center;
    padding: 60px 0;
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--border-light);
    border-top-color: var(--accent);
    border-radius: 50%;
    margin: 0 auto 32px;
    animation: spin 0.8s linear infinite;
}

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

.loading-content h2 {
    font-size: 22px;
    margin-bottom: 32px;
    color: var(--primary);
}

.loading-number {
    font-size: 40px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.loading-label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Support Pages */
.page-header {
    background: var(--primary);
    color: white;
    padding: 80px 32px;
    text-align: center;
}

.page-header h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 32px;
}

.content-section {
    margin-bottom: 48px;
}

.content-section h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--primary);
}

.content-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--primary);
}

.content-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 16px;
}

.content-section ul,
.content-section ol {
    margin-left: 24px;
    margin-bottom: 16px;
}

.content-section li {
    color: var(--text-secondary);
    margin-bottom: 10px;
    line-height: 1.7;
    font-size: 15px;
}

.content-section a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.content-section a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero h1 {
        font-size: 36px;
    }

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

    .footer-simple {
        flex-direction: column;
        gap: 24px;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }

    .nav-menu {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .amount {
        font-size: 56px;
    }

    .final-cta h2 {
        font-size: 28px;
    }

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

    /* Quiz Mobile Optimizations */
    .quiz-logo {
        font-size: 16px;
        padding: 10px 0;
        letter-spacing: 0.12em;
    }

    .quiz-progress-bar {
        top: 39px;
        height: 3px;
    }

    .quiz-container {
        padding: 12px 16px;
        min-height: auto;
        align-items: flex-start;
        padding-top: 16px;
    }

    .quiz-content {
        padding: 20px 18px;
        border-radius: 12px;
    }

    .step-indicator {
        font-size: 11px;
        padding: 3px 8px;
        margin-bottom: 12px;
    }

    .quiz-content h2 {
        font-size: 20px;
        margin-bottom: 6px;
        line-height: 1.25;
    }

    .step-subtitle {
        font-size: 13px;
        margin-bottom: 18px;
        line-height: 1.4;
    }

    .options-grid {
        gap: 8px;
    }

    .option-card {
        padding: 12px 14px;
        font-size: 14px;
        border-radius: 8px;
    }

    .option-card small {
        font-size: 11px;
        margin-top: 3px;
    }

    .input-group {
        margin: 16px auto;
        max-width: 100%;
    }

    .input-group input {
        padding: 12px 50px 12px 14px;
        font-size: 16px;
    }

    .input-unit {
        font-size: 14px;
        right: 14px;
    }

    .continue-btn {
        padding: 12px 28px;
        font-size: 15px;
        margin-top: 18px;
    }

    .privacy-note {
        padding: 10px;
        font-size: 11px;
        margin: 14px 0;
    }

    .loading-content h2 {
        font-size: 20px;
    }

    .loading-number {
        font-size: 36px;
    }

    .loading-label {
        font-size: 12px;
    }
}
