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

:root {
    --primary-gradient: linear-gradient(135deg, #6B7FD7, #9B8FD7);
    --primary-color: #6B7FD7;
    --secondary-color: #9B8FD7;
    --text-dark: #2D3748;
    --text-light: #718096;
    --text-gray: #A0AEC0;
    --bg-white: #FFFFFF;
    --bg-light: #F7FAFC;
    --success-color: #38a169;
    --warning-color: #ed8936;
    --star-color: #B794F6;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Ubuntu', sans-serif;

    color: var(--text-dark);
    background: var(--bg-white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px 0;
    z-index: 1000;
    border: 0.5px solid rgba(113, 128, 150, 0.3);
    border-radius: 0 0 10px 10px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.login-btn {
    padding: 8px 20px;
    border: 1px solid #718096;
    border-radius: 5px;
    transition: var(--transition);
    display: inline-block;
    background: transparent;
    color: var(--text-light);
}

.login-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Navbar button styling for ai-challenge */
#getMyPlanBtn {
    margin-left: auto; /* Push button to the right */
    background: var(--primary-color);
    color: white;
    border: 1px solid transparent ;
}

#getMyPlanBtn:hover {
    background: transparent;
    color: var(--text-light);
    border: 1px solid #718096;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.step {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 60px 40px;
    border: 0.5px solid rgba(113, 128, 150, 0.3);
    box-shadow: 0 20px 60px rgba(107, 127, 215, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    box-sizing: border-box;
}

.step-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Step 1 - Split Screen Layout */
#step-1 {
    max-width: 100%;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

/* Step 3 - Split Screen Layout (same as step 1) */
#step-3 {
    max-width: 100%;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

/* Step 4 - Split Screen Layout (same as step 3) */
#step-4 {
    max-width: 100%;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

/* Step 5 - Split Screen Layout (same as step 1) */
#step-5 {
    max-width: 100%;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

/* Step 6 - Split Screen Layout (same as step 5) */
#step-6 {
    max-width: 100%;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

/* Step 7 - Split Screen Layout (same as step 5) */
#step-7 {
    max-width: 100%;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

/* Step 8 - Split Screen Layout (same as step 7) */
#step-8 {
    max-width: 100%;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

/* Step 9 - Full Width Layout */
#step-9 {
    max-width: 100%;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    width: 100vw;
    margin-left: -20px;
    margin-right: -20px;
}

.step-1-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    min-height: 100vh;
    width: 100vw;
    margin-left: -20px;
    margin-right: -20px;
}

.step-1-image {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
}

.challenge-start-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.step-1-content {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 60px 40px;
    box-sizing: border-box;
    position: relative;
}

/* Step 3: Split Layout (same as step 1) */
.step-3-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    min-height: 100vh;
    width: 100vw;
    margin-left: -20px;
    margin-right: -20px;
}

.step-3-image {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
}

.challenge-step3-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.step-3-content {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 60px 40px;
    box-sizing: border-box;
    position: relative;
}

/* Step 4: Split Layout (same as step 3) */
.step-4-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    min-height: 100vh;
    width: 100vw;
    margin-left: -20px;
    margin-right: -20px;
}

.step-4-image {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
}

.challenge-step4-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.step-4-content {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 60px 40px;
    box-sizing: border-box;
    position: relative;
}

/* Step 5: Split Layout (same as step 3) */
.step-5-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    min-height: 100vh;
    width: 100vw;
    margin-left: -20px;
    margin-right: -20px;
}

.step-5-image {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
}

.challenge-step5-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.step-5-content {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 60px 40px;
    box-sizing: border-box;
    position: relative;
}

/* Step 6: Split Layout (same as step 5) */
.step-6-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    min-height: 100vh;
    width: 100vw;
    margin-left: -20px;
    margin-right: -20px;
}

.step-6-image {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
}

.challenge-step6-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.step-6-content {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 60px 40px;
    box-sizing: border-box;
    position: relative;
}

/* Step 7: Split Layout (same as step 5) */
.step-7-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    min-height: 100vh;
    width: 100vw;
    margin-left: -20px;
    margin-right: -20px;
}

.step-7-image {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
}

.challenge-step7-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.step-7-content {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 60px 40px;
    box-sizing: border-box;
    position: relative;
}

/* Step 8: Split Layout (same as step 7) */
.step-8-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    min-height: 100vh;
    width: 100vw;
    margin-left: -20px;
    margin-right: -20px;
}

.step-8-image {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
}

.challenge-step8-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.step-8-content {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 60px 40px;
    box-sizing: border-box;
    position: relative;
}

/* Quiz Logo Wrapper (outside step div, top center) */
.quiz-logo-wrapper {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    text-align: center;
    width: 100%;
    pointer-events: none;
}

.quiz-logo {
    width: 80px;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.quiz-logo:hover {
    opacity: 1;
}

.challenge-logo {
    width: 80px;
    height: auto;
    margin-bottom: 30px;
}

.step-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.step-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.step-subtitle strong {
    color: var(--primary-color);
    font-weight: 700;
}

.step-description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Loading Spinner */
.loading-spinner {
    margin-bottom: 40px;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid var(--bg-light);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

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

/* Buttons */
.btn-primary {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 18px 50px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(107, 127, 215, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 127, 215, 0.6);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-continue,
.btn-claim {
    display: block;
    margin: 20px auto 0;
}

/* Legal Footer */
.legal-footer {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    max-width: 500px;
    width: calc(100% - 80px);
}

.legal-text {
    font-size: 10px;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 8px;
}

.legal-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.legal-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.company-info {
    font-size: 9px;
    color: var(--text-gray);
    margin: 0;
    opacity: 0.7;
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    max-width: 400px;
    height: 8px;
    background: var(--bg-light);
    border-radius: 10px;
    margin-top: 30px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 10px;
    transition: width 0.5s ease;
}

/* Quiz Styles */
.quiz-header {
    width: 100%;
    margin-bottom: 40px;
}

.progress-indicator {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.question-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.encouragement-text {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

.quiz-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    width: 100%;
    max-width: 500px;
    margin-bottom: 30px;
}

.quiz-option {
    background: var(--bg-light);
    border: 2px solid transparent;
    padding: 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
}

.quiz-option:hover {
    background: #EDF2F7;
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.quiz-option.selected {
    background: var(--primary-gradient);
    color: white;
    border-color: var(--primary-color);
    transform: translateX(10px);
}

/* Progress Circle */
.progress-circle {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 40px;
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring-circle {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 8;
    stroke-linecap: round;
}

.progress-percent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
}

/* Testimonial Box */
.testimonial-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    max-width: 600px;
}

.stars {
    font-size: 24px;
    color: #FFD700;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.trustpilot-logo {
    width: 150px;
    height: auto;
    opacity: 0.7;
}

/* Forms */
.email-form,
.name-form {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.input-field {
    padding: 18px 25px;
    font-size: 16px;
    border: 2px solid var(--text-gray);
    border-radius: 12px;
    outline: none;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.input-field:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(107, 127, 215, 0.1);
}

.privacy-note {
    font-size: 14px;
    color: var(--text-gray);
    font-style: italic;
}

/* Scratch Card */
.scratch-card-container {
    width: 100%;
    max-width: 400px;
    margin: 30px auto;
}

.scratch-card {
    width: 100%;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.discount-big,
.discount-subtitle {
    text-align: center;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
}

.discount-big {
    font-size: 64px;
    margin-bottom: 5px;
}

.discount-subtitle {
    font-size: 20px;
    margin-bottom: 20px;
}

.scratch-instructions {
    text-align: center;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.scratch-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scratch-canvas {
    position: absolute;
    top: 0;
    z-index: 10;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: grab;
    cursor: -webkit-grab;
}

.scratch-canvas.scratching {
    cursor: grabbing;
    cursor: -webkit-grabbing;
}

.discount-code {
    position: relative;
    margin: 0;
    text-align: center;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 24px;
}

.fade-out {
    -webkit-animation: fade-out 0.8s;
    -webkit-animation-fill-mode: forwards;
    animation: fade-out 0.8s;
    animation-fill-mode: forwards;
}

@keyframes fade-out {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Chart / Roadmap */
.chart-container {
    width: 100%;
    margin: 40px 0;
}

.chart-wrapper {
    display: block;
    margin: 0 auto;
    border: 1px solid var(--bg-light);
    width: 700px;
    height: 350px;
    position: relative;
    background: var(--bg-light);
    border-radius: 10px;
}

.readiness-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.chart-label {
    height: 1em;
    padding: 0.3em;
    background: rgba(255, 255, 255, 0.9);
    position: absolute;
    display: none;
    color: var(--text-dark);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

/* Offer Page */
.offer-page {
    max-width: 1100px;
    padding: 60px 40px;
}

/* Step 9 full width override */
#step-9 .offer-page {
    max-width: 100%;
    width: 100%;
    padding: 100px 40px 60px; /* Extra top padding for navbar */
    box-sizing: border-box;
}

/* Step 9 Hero Section */
.step-9-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.step-9-hero-content {
    display: flex;
    flex-direction: column;
}

.step-9-hero-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.challenge-plan-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

.timer-container {
    margin-top: 40px;
    margin-bottom: 30px;
}

.timer-display {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    background: white;
    border: 2px solid var(--primary-color);
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-block;
}

#timer {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-color);
}

.offer-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.offer-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 40px 0;
    max-width: 800px;
}

.benefit-item {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    position: relative;
    padding-left: 20px;
}

.benefit-item::before {
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.benefit-pace::before {
    content: '✓';
}

.benefit-income::before {
    content: '$';
}

.benefit-tools::before {
    content: '⚙';
}

.benefit-certificates::before {
    content: '★';
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Desktop - 4 cards */
    gap: 30px;
    margin: 50px 0;
}

.pricing-card {
    background: white;
    border: 2px solid var(--bg-light);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 127, 215, 0.2);
}

.pricing-card.popular {
    border-color: var(--primary-color);
    border-width: 3px;
    box-shadow: 0 10px 30px rgba(107, 127, 215, 0.3);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
}

.plan-name {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.plan-duration {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.price-wrapper {
    margin: 30px 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 15px;
    flex-direction: column;
}

.price-amounts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
    flex-wrap: nowrap;
}

.price-old {
    font-size: 16px;
    color: var(--text-gray);
    text-decoration: line-through;
    opacity: 0.6;
}

.price-new {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-gray);
    opacity: 0.7;
}

.price-per-day-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price-per-day {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.per-day-text {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-gray);
    margin-left: 2px;
}

.research-note {
    font-size: 12px;
    color: var(--primary-color);
    font-style: italic;
    margin-bottom: 20px;
}

.btn-plan {
    width: 100%;
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 18px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-plan:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 127, 215, 0.4);
}

/* Social Proof */
.social-proof {
    margin: 40px 0;
}

.join-count-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.profile-pictures {
    display: flex;
    align-items: center;
}

.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    object-fit: cover;
    margin-left: -8px;
}

.profile-pic:first-child {
    margin-left: 0;
}

.join-count {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.recent-joins {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

/* User Profile Section */
.user-profile-section {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid var(--bg-light);
    border-bottom: 1px solid var(--bg-light);
}

.profile-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.profile-label {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 500;
}

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

.recent-join-item {
    font-size: 14px;
    color: var(--text-light);
    padding: 10px;
    background: var(--bg-light);
    border-radius: 8px;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Guarantee Section */
.guarantee-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--bg-light);
}

.guarantee-badge {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-light);
}

.payment-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
}

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

/* Testimonials Section */
.testimonials-container {
    margin: 40px 0;
    display: flex;
    justify-content: center;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
    border: 0.5px solid rgba(113, 128, 150, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 45px;
    height: 45px;
}

.avatar-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-image: url('img/youzzful-testimonial.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.author-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.author-info p {
    font-size: 11px;
    color: var(--text-gray);
}

.testimonial-rating {
    margin-left: auto;
    display: flex;
    gap: 5px;
}

.star {
    color: var(--star-color);
    font-size: 18px;
}

/* Success Screen */
.success-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.success-email {
    font-size: 16px;
    color: var(--text-light);
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablet - 2 cards */
    }
}

@media (max-width: 768px) {
    body {
        padding: 15px;
    }
    
    /* Navbar Mobile */
    .navbar .hamburger {
        display: none !important; /* Hide hamburger in ai-challenge navbar */
    }
    
    .navbar #getMyPlanBtn {
        display: inline-block !important; /* Ensure button is visible on mobile */
        margin-left: auto; /* Push button to the right */
    }
    
    .navbar .nav-wrapper {
        justify-content: space-between; /* Space between logo and button */
    }
    
    .container {
        padding: 0 20px;
    }
    
    .navbar {
        width: calc(100% - 30px);
    }
    
    /* Step 1 Mobile - Stack Vertically */
    .step-1-wrapper {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        height: auto;
        margin-left: -15px;
        margin-right: -15px;
        width: 100vw;
    }
    
    .step-1-image {
        order: 2;
        height: 50vh;
        min-height: 300px;
    }
    
    .step-1-content {
        order: 1;
        height: auto;
        min-height: 50vh;
        padding: 40px 20px;
    }
    
    /* Step 3 Mobile - Stack Vertically */
    .step-3-wrapper {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        height: auto;
        margin-left: -15px;
        margin-right: -15px;
        width: 100vw;
    }
    
    .step-3-image {
        order: 2;
        height: 50vh;
        min-height: 300px;
    }
    
    .step-3-content {
        order: 1;
        height: auto;
        min-height: 50vh;
        padding: 40px 20px;
    }
    
    /* Step 4 Mobile - Stack Vertically */
    .step-4-wrapper {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        height: auto;
        margin-left: -15px;
        margin-right: -15px;
        width: 100vw;
    }
    
    .step-4-image {
        order: 2;
        height: 50vh;
        min-height: 300px;
    }
    
    .step-4-content {
        order: 1;
        height: auto;
        min-height: 50vh;
        padding: 40px 20px;
    }
    
    /* Step 5 Mobile - Stack Vertically */
    .step-5-wrapper {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        height: auto;
        margin-left: -15px;
        margin-right: -15px;
        width: 100vw;
    }
    
    .step-5-image {
        order: 2;
        height: 50vh;
        min-height: 300px;
    }
    
    .step-5-content {
        order: 1;
        height: auto;
        min-height: 50vh;
        padding: 40px 20px;
    }
    
    /* Step 6 Mobile - Stack Vertically */
    .step-6-wrapper {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        height: auto;
        margin-left: -15px;
        margin-right: -15px;
        width: 100vw;
    }
    
    .step-6-image {
        order: 2;
        height: 50vh;
        min-height: 300px;
    }
    
    .step-6-content {
        order: 1;
        height: auto;
        min-height: 50vh;
        padding: 40px 20px;
    }
    
    /* Step 7 Mobile - Stack Vertically */
    .step-7-wrapper {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        height: auto;
        margin-left: -15px;
        margin-right: -15px;
        width: 100vw;
    }
    
    .step-7-image {
        order: 2;
        height: 50vh;
        min-height: 300px;
    }
    
    .step-7-content {
        order: 1;
        height: auto;
        min-height: 50vh;
        padding: 40px 20px;
    }
    
    /* Step 8 Mobile - Stack Vertically */
    .step-8-wrapper {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        height: auto;
        margin-left: -15px;
        margin-right: -15px;
        width: 100vw;
    }
    
    .step-8-image {
        order: 2;
        height: 50vh;
        min-height: 300px;
    }
    
    .step-8-content {
        order: 1;
        height: auto;
        min-height: 50vh;
        padding: 40px 20px;
    }
    
    /* Step 9 Mobile - Full Width */
    #step-9 {
        margin-left: -15px;
        margin-right: -15px;
        width: 100vw;
    }
    
    #step-9 .offer-page {
        padding: 100px 20px 40px; /* Extra top padding for navbar */
    }
    
    /* Step 9 Hero Mobile */
    .step-9-hero {
        display: flex;
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .step-9-hero-image {
        order: 2;
    }
    
    .step-9-hero-content {
        order: 1;
    }
    
    .step {
        padding: 40px 20px;
        width: 100%;
        margin: 0 auto;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .step-title {
        font-size: 28px;
    }
    
    .offer-title {
        font-size: 32px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .chart-wrapper {
        width: 100%;
        height: auto;
    }
    
    .readiness-canvas {
        max-width: 100%;
        height: auto;
    }
    
    .scratch-wrapper {
        width: 100%;
        max-width: 400px;
    }
    
    .scratch-canvas {
        width: 100% !important;
    }
    
    .guarantee-section {
        flex-direction: column;
        gap: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .user-profile-section {
        flex-direction: column;
        gap: 30px;
    }
    
    .discount-big {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
        align-items: center;
        justify-content: center;
    }
    
    /* Step 9 Mobile Small - Full Width */
    #step-9 {
        margin-left: -10px;
        margin-right: -10px;
        width: 100vw;
    }
    
    #step-9 .offer-page {
        padding: 90px 15px 30px; /* Extra top padding for navbar */
    }
    
    /* Step 9 Hero Mobile Small */
    .step-9-hero {
        gap: 30px;
        margin-bottom: 30px;
    }
    
    /* Step 1 Mobile Small - Adjust heights */
    .step-1-wrapper {
        margin-left: -10px;
        margin-right: -10px;
    }
    
    .step-1-image {
        height: 40vh;
        min-height: 250px;
    }
    
    .step-1-content {
        min-height: 60vh;
        padding: 30px 15px;
    }
    
    /* Step 3 Mobile Small - Adjust heights */
    .step-3-wrapper {
        margin-left: -10px;
        margin-right: -10px;
    }
    
    .step-3-image {
        height: 40vh;
        min-height: 250px;
    }
    
    .step-3-content {
        min-height: 60vh;
        padding: 30px 15px;
    }
    
    /* Step 4 Mobile Small - Adjust heights */
    .step-4-wrapper {
        margin-left: -10px;
        margin-right: -10px;
    }
    
    .step-4-image {
        height: 40vh;
        min-height: 250px;
    }
    
    .step-4-content {
        min-height: 60vh;
        padding: 30px 15px;
    }
    
    /* Step 5 Mobile Small - Adjust heights */
    .step-5-wrapper {
        margin-left: -10px;
        margin-right: -10px;
    }
    
    .step-5-image {
        height: 40vh;
        min-height: 250px;
    }
    
    .step-5-content {
        min-height: 60vh;
        padding: 30px 15px;
    }
    
    /* Step 6 Mobile Small - Adjust heights */
    .step-6-wrapper {
        margin-left: -10px;
        margin-right: -10px;
    }
    
    .step-6-image {
        height: 40vh;
        min-height: 250px;
    }
    
    .step-6-content {
        min-height: 60vh;
        padding: 30px 15px;
    }
    
    /* Step 7 Mobile Small - Adjust heights */
    .step-7-wrapper {
        margin-left: -10px;
        margin-right: -10px;
    }
    
    .step-7-image {
        height: 40vh;
        min-height: 250px;
    }
    
    .step-7-content {
        min-height: 60vh;
        padding: 30px 15px;
    }
    
    /* Step 8 Mobile Small - Adjust heights */
    .step-8-wrapper {
        margin-left: -10px;
        margin-right: -10px;
    }
    
    .step-8-image {
        height: 40vh;
        min-height: 250px;
    }
    
    .step-8-content {
        min-height: 60vh;
        padding: 30px 15px;
    }
    
    .legal-footer {
        bottom: 20px;
        width: calc(100% - 40px);
    }
    
    .legal-text {
        font-size: 9px;
        line-height: 1.4;
        margin-bottom: 6px;
    }
    
    .company-info {
        font-size: 8px;
    }
    
    .step {
        border-radius: 15px;
        padding: 30px 15px;
        width: 100%;
        margin: 0 auto;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .step-title {
        font-size: 24px;
    }
    
    .btn-primary {
        padding: 15px 40px;
        font-size: 14px;
    }
    
    .discount-big {
        font-size: 36px;
    }
    
    .scratch-wrapper {
        height: 60px;
    }
    
    .chart-wrapper {
        height: auto;
    }
}
