:root {
    --color-gold: #D4AF37;
    --color-gold-light: #F3E5AB;
    --color-brown-dark: #2C1B18;
    --color-brown-medium: #4A3B32;
    --color-beige: #F5E6D3;
    --color-beige-light: #FAF0E6;
    --color-white: #FFFFFF;
    --color-text-main: #2C1B18;
    --color-text-light: #F5E6D3;

    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;

    --shadow-card: 0 10px 30px rgba(44, 27, 24, 0.1);
    --shadow-gold: 0 0 15px rgba(212, 175, 55, 0.3);

    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
}

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Montserrat:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-beige-light);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Background Texture/Animation Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, rgba(44, 27, 24, 0.05) 100%);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- Header --- */
.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
}

.brand-image-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--color-gold);
    box-shadow: var(--shadow-gold);
    overflow: hidden;
    margin-bottom: 15px;
    animation: pulse-gold 3s infinite ease-in-out;
}

.brand-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Progress Bar --- */
.progress-container {
    width: 100%;
    height: 6px;
    background-color: rgba(44, 27, 24, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    width: 0%;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px var(--color-gold);
}

/* --- Typography --- */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    text-align: center;
    color: var(--color-brown-dark);
}

h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    line-height: 1.2;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

p.subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--color-brown-medium);
    margin-bottom: 30px;
    font-weight: 300;
}

/* --- Cards & Buttons --- */
.grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 100%;
}

.card-option {
    background: var(--color-white);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-medium);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    position: relative;
    padding-bottom: 15px;
}

.card-option:hover,
.card-option:active {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

.card-image {
    width: 100%;
    height: 140px;
    object-fit: cover;
    object-position: top;
    margin-bottom: 10px;
}

.card-label {
    padding: 0 10px;
    text-align: center;
    font-weight: 500;
    font-size: 0.95rem;
}

.btn-vertical {
    width: 100%;
    background: var(--color-white);
    border: 1px solid rgba(44, 27, 24, 0.1);
    padding: 16px 20px;
    margin-bottom: 12px;
    border-radius: 12px;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-fast);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-brown-dark);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-shadow: var(--shadow-card);
}

.btn-vertical:hover {
    background: var(--color-gold);
    /* Gold background on hover */
    color: var(--color-white);
    border-color: var(--color-gold);
    transform: scale(1.02);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, #b89628 100%);
    color: var(--color-white);
    border: none;
    padding: 18px 30px;
    font-size: 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
    transition: var(--transition-medium);
    width: 100%;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--color-brown-medium);
    border: none;
    padding: 15px;
    font-size: 0.9rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Animate Transitions --- */
.fade-in-up {
    animation: fadeInUp 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }

    50% {
        box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
    }

    100% {
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }
}

/* --- Step Content Wrapper --- */
#step-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- Offer Page Specifics --- */
.offer-section {
    width: 100%;
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.price-box {
    text-align: center;
    background: rgba(212, 175, 55, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px dashed var(--color-gold);
    margin: 20px 0;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
}

.new-price {
    font-size: 2rem;
    color: var(--color-brown-dark);
    font-weight: 700;
    font-family: var(--font-heading);
}

.installment {
    font-size: 0.9rem;
    color: var(--color-gold);
    font-weight: 600;
}

/* Utilities */
.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 1rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

/* --- Transition Steps --- */
.transition-step {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(212, 175, 55, 0.2);
    animation: fadeIn 0.8s ease;
}

.transition-text {
    font-size: 1.2rem;
    color: var(--color-brown-dark);
    margin-bottom: 30px;
    line-height: 1.6;
    font-weight: 500;
}

.transition-highlight {
    color: var(--color-gold);
    font-weight: 700;
    font-size: 1.3rem;
    display: block;
    margin-top: 10px;
}

/* --- Social Proof Section --- */
.social-section {
    width: 100%;
    margin-bottom: 20px;
}

.social-title {
    text-align: center;
    font-family: var(--font-heading);
    color: var(--color-brown-dark);
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.4;
}

/* Carousel */
.carousel {
    position: relative;
    width: 100%;
    /* Auto height to fit content */
    min-height: 280px;
    overflow: hidden;
    border-radius: 12px;
    background: var(--color-brown-dark);
    /* Dark background as requested */
    margin-bottom: 30px;
    box-shadow: var(--shadow-card);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    box-sizing: border-box;
}

.testimonial-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-gold);
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.testimonial-content {
    text-align: center;
    color: #fff;
    max-width: 90%;
}

.quote {
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 10px;
    font-weight: 300;
    line-height: 1.5;
}

.author {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-gold);
    margin-top: 10px;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
}

.video-card {
    position: relative;
    width: 100%;
    padding-bottom: 177%;
    /* 9:16 Aspect Ratio */
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.video-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.video-card:hover .video-thumb {
    opacity: 0.8;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 2;
}

.play-icon::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 12px solid #fff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    margin-left: 4px;
}

.video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 5;
}

.video-overlay-text {
    position: absolute;
    bottom: 10px;
    left: 5px;
    right: 5px;
    text-align: center;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.4);
    padding: 4px;
    border-radius: 4px;
}

.result-badge {
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.result-headline {
    font-size: 1.8rem;
    color: var(--color-brown-dark);
    margin-bottom: 15px;
}

.result-subheadline {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-brown-medium);
    margin-bottom: 25px;
    font-style: italic;
}

.result-body p {
    margin-bottom: 15px;
    font-size: 1rem;
    text-align: left;
}

.result-box {
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid var(--color-gold);
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
    text-align: left;
}

.result-box h4 {
    margin-bottom: 10px;
    color: var(--color-brown-dark);
}

.result-box ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.bar-bg {
    height: 12px;
    background: #f0f0f0;
    border-radius: 6px;
    overflow: hidden;
    width: 100%;
}

.bar-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 1s ease;
}

.bonus-list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.bonus-list li {
    background: #fff;
    padding: 10px;
    border-bottom: 1px solid #eee;
    color: var(--color-brown-dark);
}