:root {
    /* Colors */
    --bg-cream: #FDFBF7;
    --bg-offwhite: #F5F3EC;
    --text-dark: #2C2C2A;
    --text-medium: #4A4A48;
    --accent-color: #B56554; /* Terracotta */
    --accent-hover: #9E5343;
    --bg-dark: #1E1E1C;
    --text-light: #F9F8F6;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 20px;
    --section-padding-mobile: 60px 15px;
    
    /* Radii & Shadows */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-cream);
    line-height: 1.6;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: inherit;
    line-height: 1.2;
    margin-bottom: 24px;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 20px;
    color: var(--text-medium);
}

strong {
    color: var(--text-dark);
    font-weight: 600;
}

a {
    color: var(--accent-color);
    text-decoration: underline;
}

a:hover {
    color: var(--accent-hover);
}

/* LAYOUT */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

section {
    padding: var(--section-padding);
}

.section-light {
    background-color: var(--bg-cream);
}

.section-alt {
    background-color: var(--bg-offwhite);
}

.section-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.section-dark p {
    color: #CCC;
}

.section-dark strong {
    color: var(--text-light);
}

.text-center {
    text-align: center;
}

/* BUTTONS */
.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: #FFF;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
}

.btn:hover {
    background-color: var(--accent-hover);
    color: #FFF;
    transform: translateY(-2px);
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.1rem;
    width: 100%;
    max-width: 400px;
}

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

.cta-box {
    margin-top: 40px;
    text-align: center;
}

.sub-cta, .secure-checkout {
    font-size: 0.85rem;
    margin-top: 12px;
    opacity: 0.8;
}

.spots-accent {
    color: var(--accent-color);
    font-weight: 600;
}

/* STICKY HEADER */
.sticky-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-dark);
    color: var(--text-light);
    z-index: 1000;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 0.9rem;
}

.timer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.timer span:first-child {
    margin-right: 10px;
    opacity: 0.8;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.1);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    min-width: 45px;
}

.time-block span {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent-color);
    line-height: 1;
}

.time-block small {
    font-size: 0.6rem;
    text-transform: uppercase;
    opacity: 0.7;
    margin-top: 2px;
}

.sticky-action {
    display: flex;
    align-items: center;
    gap: 15px;
}

.spots-left {
    font-size: 0.8rem;
    opacity: 0.9;
}

main {
    margin-top: 26px !important;
}

/* ABOVE THE FOLD */
.atf {
    text-align: center;
    padding-top: 8px !important;
    padding-bottom: 20px !important;
}

.scroll-arrows {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    color: var(--accent-color);
    opacity: 0.8;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(10px); }
    60% { transform: translateY(5px); }
}

.lead {
    padding-top: 30px !important;
}

.pre-headline {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.atf h1 {
    margin-top: 0 !important;
    margin-bottom: 30px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.sub-headline {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 50px;
}

.atf-media {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.placeholder {
    background-color: #EAE8E3;
    border: 2px dashed #CCC;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #888;
    position: relative;
    overflow: hidden;
}

.debora-photo {
    width: 350px;
    height: 450px;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.debora-photo video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.debora-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.badges {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    pointer-events: none;
}

.badge {
    background: rgba(255,255,255,0.9);
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    color: var(--text-dark);
    font-weight: 500;
}

.unmute-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(181, 101, 84, 0.9); /* Usa il colore accent-color Terracotta */
    color: #FFF;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 20;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: pulse 2s infinite;
}

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

.video-testimonial {
    width: 250px;
    height: 450px;
}

.video-mock {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #D9D7D2;
}

.play-btn {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

/* SPECIFIC ELEMENTS */
.thought-bubble {
    background-color: var(--bg-cream);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    margin: 30px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    position: relative;
    border: 1px solid rgba(193, 155, 108, 0.2);
    border-top-left-radius: 5px;
}

.bubble-icon {
    position: absolute;
    top: -20px;
    left: -15px;
    font-size: 35px;
    background: var(--bg-light);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.highlight-gold {
    background: linear-gradient(120deg, rgba(238,220,154,0.4) 0%, rgba(193,155,108,0.2) 100%);
    padding: 0 5px;
    border-radius: 3px;
    font-weight: 600;
}

.mother-box {
    margin-top: 30px; 
    padding: 25px; 
    background: var(--bg-offwhite); 
    border-left: 4px solid var(--accent-color); 
    border-radius: var(--radius-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mother-box:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.empty-place-card {
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(193, 155, 108, 0.2);
}

.empty-place-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 400px;
}

.empty-place-text {
    padding: 30px;
    text-align: center;
    background: var(--bg-light);
}

.empty-place-text p {
    margin: 0;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-dark);
}

.empty-place-text strong {
    color: var(--accent-color);
    font-weight: 700;
}

.content-text p {
    margin-bottom: 24px;
}

.highlight {
    font-weight: 600;
    color: var(--text-dark);
    border-left: 3px solid var(--accent-color);
    padding-left: 15px;
    margin: 30px 0;
    font-style: italic;
}

.highlight-large {
    font-size: 1.3rem;
    font-family: var(--font-heading);
    color: var(--accent-color);
    text-align: center;
    margin: 40px 0;
}

/* METHOD STEPS */
.method-steps {
    margin: 40px 0;
}

.step {
    background: var(--bg-cream);
    padding: 30px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent-color);
}

.step h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.diagram-placeholder {
    height: 200px;
    background: #EAE8E3;
    border: 2px dashed #CCC;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
    color: #888;
}

/* AGENDA */
.agenda-intro {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.timeline {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--accent-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    margin-bottom: 20px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    right: -8px;
    background-color: var(--bg-cream);
    border: 3px solid var(--accent-color);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even)::after {
    left: -8px;
}

.time {
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.info h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.info p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.agenda-outro {
    margin-top: 40px;
    font-style: italic;
    text-align: center;
}

/* ABOUT */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-photo {
    height: 500px;
    width: 100%;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.7);
    color: #FFF;
    padding: 15px;
    display: flex;
    justify-content: space-around;
    backdrop-filter: blur(5px);
}

.stat {
    text-align: center;
    font-size: 0.8rem;
}

.stat strong {
    display: block;
    font-size: 1.2rem;
    color: var(--accent-color);
}

.dm-placeholder {
    background: #EAE8E3;
    padding: 20px;
    border-radius: var(--radius-md);
    margin: 30px 0;
    text-align: center;
    font-style: italic;
    color: #888;
}

.credentials {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* TESTIMONIALS */
.main-testimonial {
    max-width: 300px;
    margin: 0 auto 50px;
    text-align: center;
}

.testi-intro {
    margin-bottom: 20px;
}

.video-mock.vertical {
    height: 500px;
    border-radius: var(--radius-md);
}

.testimonials-wall {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.testi-card {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    overflow: hidden;
}

.testi-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* OFFERTA */
.value-stack {
    margin: 40px 0;
}

.stack-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: #FFF;
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
}

.stack-item.bonus {
    border: 2px solid var(--accent-color);
}

.stack-icon {
    font-size: 2rem;
    margin-right: 20px;
}

.stack-text {
    flex-grow: 1;
}

.stack-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.stack-text p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.stack-price {
    font-weight: 600;
    color: var(--accent-color);
    white-space: nowrap;
    margin-left: 20px;
}

.total-value {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: #FFF;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.strikethrough {
    text-decoration: line-through;
    opacity: 0.6;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.final-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0;
}

.pricing-tiers {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.tier {
    flex: 1;
    background: #FFF;
    padding: 25px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.tier.active {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
}

.tier.locked {
    opacity: 0.6;
    background: #EAE8E3;
}

.tier h4 {
    margin-bottom: 10px;
}

.tier .spots {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.tier .price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.tier .status {
    font-size: 0.8rem;
    font-weight: 600;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: #EAE8E3;
    border-radius: 5px;
    overflow: hidden;
    margin: 20px 0 10px;
}

.progress {
    height: 100%;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.limit-info {
    text-align: center;
    margin-bottom: 40px;
}

.guarantee {
    background: #FFF;
    padding: 40px;
    border-radius: var(--radius-lg);
    border-top: 5px solid var(--accent-color);
    margin: 40px 0;
    box-shadow: var(--shadow-md);
}

.final-thought {
    text-align: center;
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 600;
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ */
.faq-list {
    margin-top: 40px;
}

.faq-item {
    background: #FFF;
    padding: 25px;
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
}

.faq-item h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.faq-item p {
    margin-bottom: 0;
}

/* LAST CALL */
.timer-large {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.timer-large .time-block {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    min-width: 80px;
}

.timer-large span {
    font-size: 2.5rem;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-cream);
    border-top: 1px solid #EAE8E3;
}

footer p {
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.disclaimer {
    margin-top: 20px;
    font-size: 0.75rem;
    opacity: 0.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* MODAL / POP-UP */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    overflow: auto;
}

/* TICKET CSS CUSTOM */
.ticket-css {
    display: flex;
    max-width: 650px;
    margin: 40px auto;
    background: linear-gradient(135deg, #1a1a1a, #2a1f1d);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    color: #fff;
    text-align: left;
}

/* Puntini laterali stile biglietto */
.ticket-css::before, .ticket-css::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-color: var(--bg-cream);
    border-radius: 50%;
    z-index: 2;
}
.ticket-css::before {
    left: -15px;
}
.ticket-css::after {
    right: -15px;
}

.ticket-left {
    flex: 1;
    padding: 40px;
    position: relative;
    border-right: 2px dashed rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ticket-badge {
    align-self: flex-start;
    background: #111;
    color: var(--text-light);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.ticket-badge span {
    color: var(--accent-color);
}

.ticket-title {
    font-size: 1.4rem;
    font-family: var(--font-body);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
}

.ticket-highlight {
    color: var(--accent-color);
}

.ticket-date {
    background: #fff;
    color: #111;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: inline-block;
    align-self: flex-start;
    border-radius: 4px;
}

.ticket-name {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #f1f1f1;
    text-transform: uppercase;
    margin-bottom: 0;
}

.ticket-right {
    width: 250px;
    background: linear-gradient(135deg, #2a1f1d, var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.ticket-photo-wrapper {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.ticket-photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 600px) {
    .ticket-css {
        flex-direction: column;
    }
    .ticket-left {
        border-right: none;
        border-bottom: 2px dashed rgba(255, 255, 255, 0.2);
        padding: 30px 20px;
        align-items: center;
        text-align: center;
    }
    .ticket-badge, .ticket-date {
        align-self: center;
    }
    .ticket-right {
        width: 100%;
        padding: 30px 20px;
    }
    .ticket-css::before {
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
    }
    .ticket-css::after {
        top: auto;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
    }
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--bg-cream);
    margin: 20px;
    padding: 40px;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 500px;
    position: relative;
    box-shadow: var(--shadow-md);
    animation: modalSlideIn 0.3s ease;
}

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

.close-modal {
    color: var(--text-medium);
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close-modal:hover {
    color: var(--accent-color);
}

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

.modal-header h3 {
    color: var(--accent-color);
    margin-bottom: 10px;
}

.modal-header p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #CCC;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: #FFF;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
}

.checkbox-group input {
    margin-top: 5px;
}

.checkbox-group label {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.8;
}

#lead-form .btn {
    width: 100%;
    margin-top: 10px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .atf-media {
        flex-direction: column;
    }
    
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0%;
    }
    
    .timeline-item:nth-child(odd)::after,
    .timeline-item:nth-child(even)::after {
        left: 22px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-wall {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: var(--section-padding-mobile);
    }
    
    .sticky-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .sticky-event-info {
        display: none;
    }
    
    .sticky-action {
        width: 100%;
        justify-content: space-between;
    }
    
    main {
        margin-top: 120px;
    }
    
    .pricing-tiers {
        flex-direction: column;
    }
    
    .stack-item {
        flex-direction: column;
    }
    
    .stack-price {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .badges.mobile-inline {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .badges.mobile-inline .badge {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .timer-large span {
        font-size: 1.8rem;
    }
    
    .timer-large .time-block {
        min-width: 60px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .testimonials-wall {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .testi-card {
        min-width: 0;
    }

    .logo-wrapper {
        display: none;
    }

    .atf {
        padding-top: 25px !important;
    }

    .marquee span {
        font-size: 0.8rem;
    }
}

/* MARQUEE BAR STYLES */
.marquee-wrapper {
    background: linear-gradient(90deg, #1A1A18, #333330, #1A1A18);
    color: #EEDC9A; /* Oro tenue */
    padding: 6px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    border-bottom: 1px solid #444;
}

.marquee {
    display: inline-block;
    animation: marquee-scroll 30s linear infinite;
}

.marquee span {
    display: inline-block;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* LUXURY PREMIUM STYLES */
.btn-premium {
    background: linear-gradient(135deg, var(--accent-color), #8B4A3D);
    box-shadow: 0 4px 15px rgba(181, 101, 84, 0.4);
    border: 1px solid #C48274;
}
.btn-premium:hover {
    background: linear-gradient(135deg, #8B4A3D, var(--accent-color));
    box-shadow: 0 6px 20px rgba(181, 101, 84, 0.6);
}

.premium-stack .stack-item {
    background: #FFFFFF;
    border: 1px solid #EAE8E3;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.premium-stack .stack-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}
.premium-stack .bonus-premium {
    background: linear-gradient(to right, #FFF, #FEFAEE);
    border: 2px solid #D4B26C;
}
.premium-total {
    background: linear-gradient(135deg, #1A1A18, #2C2C2A);
    color: #FFF;
    border: 1px solid #444;
    position: relative;
    overflow: hidden;
}
.premium-total .strikethrough {
    color: #999;
}
.premium-total .accent-gold {
    color: #EEDC9A;
    text-shadow: 0 2px 10px rgba(238, 220, 154, 0.3);
}

.premium-tiers .tier {
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #EAE8E3;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    position: relative;
}
.premium-tiers .tier.active {
    border: 2px solid #D4B26C;
    background: linear-gradient(to bottom, #FFFFFF, #FEFCF6);
    box-shadow: 0 15px 35px rgba(212, 178, 108, 0.15);
    transform: scale(1.08);
    z-index: 2;
}
.tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #D4B26C, #EEDC9A);
    color: #333;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(212, 178, 108, 0.4);
    letter-spacing: 1px;
}
.premium-tiers .tier:hover {
    transform: translateY(-5px);
}
.premium-tiers .tier.active:hover {
    transform: scale(1.08) translateY(-5px);
}
.premium-guarantee {
    background: #FFF;
    border: 1px solid #EAE8E3;
    border-top: 5px solid #D4B26C;
}

/* Fix sticky header padding due to marquee */
main {
    margin-top: 110px;
}
@media (max-width: 768px) {
    main {
        margin-top: 140px;
    }
}
