/* ---------------------------------- */
/* # CORE & SETUP */
/* ---------------------------------- */
:root {
    --color-background: #1A1A2D;
    --color-text: #F0EAD6;
    --color-primary: #FAD02C;
    --color-secondary: #A09ABC;
    --color-accent: #E0B1CB;
    --color-surface: #25254D;
    --color-border: rgba(240, 234, 214, 0.2);
    --font-display: 'Rozha One', serif;
    --font-body: 'Work Sans', sans-serif;
    --transition-dreamy: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: all 0.3s ease-in-out;
    --shadow-soft: 0px 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0px 8px 30px rgba(250, 208, 44, 0.15), 0px 4px 15px rgba(250, 208, 44, 0.1);
    --border-radius-small: 8px;
    --border-radius-medium: 16px;
    --border-radius-large: 50px;
}
html.theme-light {
    --color-background: #FDFAF6;
    --color-text: #3D3D56;
    --color-primary: #D4AF37;
    --color-secondary: #7F7C82;
    --color-accent: #D98C7A;
    --color-surface: #FFFFFF;
    --color-border: rgba(61, 61, 86, 0.2);
}
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
}
body {
    font-family: var(--font-body);
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    cursor: none;
    transition: opacity 0.4s ease-in-out;
}
body.lang-changing {
    opacity: 0;
}
body a, body button {
    cursor: none;
}
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 50%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s cubic-bezier(0.19, 1, 0.22, 1);
}
body:has(a:hover) .cursor-outline,
body:has(button:hover) .cursor-outline {
     transform: translate(-50%, -50%) scale(1.5);
     background-color: rgba(224, 177, 203, 0.2);
     border-color: transparent;
}
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.5px;
}
h1 { font-size: clamp(2rem, 4vw, 3.8rem); }
h2 { font-size: clamp(2rem, 6vw, 3rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.25rem, 4vw, 1.75rem); margin-bottom: 0.5rem; }
p { max-width: 65ch; margin-bottom: 1.2rem; }
a {
    color: var(--color-secondary);
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: var(--transition-dreamy);
}
a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--color-accent);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}
.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-header p {
    margin: 0.5rem auto 0;
    max-width: none; 
}
section {
    padding: 4rem 0;
    margin: 0 2rem;
}
.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.4rem 0 1.6rem 0;
    transition: var(--transition-dreamy);
}
.site-header.scrolled {
    background-color: rgba(26, 26, 45, 0.8);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft);
}
html.theme-light .site-header.scrolled {
     background-color: rgba(253, 250, 246, 0.8);
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-text);
    text-decoration: none;
}
.logo:hover::after { transform: scaleX(0); }
.logo-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}
.main-nav ul { list-style: none; display: flex; gap: 2.5rem; }
.nav-controls { display: flex; align-items: center; gap: 1.5rem; }
.separator {
    height: 24px;
    width: 1px;
    background-color: var(--color-border);
    margin: 0 0.5rem;
}
.social-links-header {
    display: flex;
    gap: 1.5rem;
}
.social-links-header a svg {
    width: 24px;
    height: 24px;
    fill: var(--color-text);
    transition: var(--transition-dreamy);
}
.social-links-header a:hover svg {
    fill: var(--color-accent);
    transform: scale(1.1);
}
.social-links-header a::after {
    display: none;
}
.lang-switcher button {
    background: none;
    border: none;
    color: var(--color-text);
    font-family: var(--font-body);
    font-weight: 500;
    opacity: 0.6;
    transition: var(--transition-dreamy);
}
.lang-switcher button.active {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 4px;
}
.lang-switcher button:not(.active):hover {
    opacity: 1;
}
.theme-toggle {
     background: none;
     border: none;
     color: var(--color-text);
     width: 24px;
     height: 24px;
}
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 8rem; }
.hero-content { display: grid; grid-template-columns: 1fr; align-items: center; gap: 3rem; }
.hero-text h1 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.headline-part1 {
    text-align: left;
    padding-right: 20%;
}
.headline-part2 {
    text-align: right;
    padding-left: 20%;
}
.hero h1 .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(60px) rotate(8deg) scale(0.8);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero h1.visible .char {
    opacity: 1;
    transform: translateY(0) rotate(0) scale(1);
}
.about-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    align-items: center;
    gap: 1rem;
    position: relative;
}
.about-text {
    grid-column: 1 / 8;
    grid-row: 1 / 2;
    z-index: 2;
    background-color: var(--color-surface);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-glow);
}
.about-image {
    grid-column: 7 / 11;
    grid-row: 1 / 2;
    z-index: 1;
}
.about-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}
.about-text blockquote {
    font-family: var(--font-body);
    font-size: 1.2rem;
    line-height: 1.5;
    border-left: 3px solid var(--color-primary);
    padding-left: 1.5rem;
    margin-top: 2rem;
    font-style: italic;
}
.gallery-grid, .workshop-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.gallery-item, .workshop-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    display: block;
    flex-grow: 1;
    height: 250px;
}
.gallery-item::after, .workshop-item::after {
    display: none;
}
.gallery-item img, .workshop-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover img, .workshop-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.2);
}
.contact-box {
    max-width: 70ch;
    margin: 0 auto;
    text-align: center;
}
.contact-box p {
    max-width: 100%;
}
.contact-form {
    margin-top: 2.5rem;
    text-align: left;
}
.form-group {
    margin-bottom: 1.5rem;
}
.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-text);
    font-family: var(--font-body);
    transition: var(--transition-dreamy);
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(250, 208, 44, 0.2);
}
.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}
.form-messages {
    margin-top: 1rem;
    font-weight: 500;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}
.form-messages.success {
    background-color: rgba(40, 167, 69, 0.2);
    border: 1px solid #28a745;
    color: #28a745;
    display: block;
}
.form-messages.error {
    background-color: rgba(220, 53, 69, 0.2);
    border: 1px solid #dc3545;
    color: #dc3545;
    display: block;
}
.cta-button {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    background-color: var(--color-primary);
    color: #1A1A2D;
    padding: 1rem 2.2rem 1.1rem 2rem;
    border-radius: 50px;
    border: 2px solid transparent;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-dreamy);
    margin-top: 1.5rem;
    cursor: pointer;
}
.cta-button:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: var(--shadow-glow);
    background-color: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}
.cta-button::after { content: none; }
.contact-form .cta-button {
    width: 100%;
    text-align: center;
}
html.theme-light .cta-button {
    color: var(--color-background);
}
html.theme-light .cta-button:hover {
    color: var(--color-primary);
}
.newsletter-section {
    background-color: var(--color-surface);
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-glow);
    margin-top: 4rem;
    text-align: center;
}
.newsletter-form {
    max-width: 500px;
    margin: 2rem auto 0;
    display: flex;
    gap: 1rem;
}
.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background-color: var(--color-background);
    color: var(--color-text);
}
.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(250, 208, 44, 0.2);
}
.newsletter-form input::placeholder {
    color: var(--color-secondary);
    opacity: 0.7;
}
.site-footer {
    padding: 4rem 0 2.5rem 0;
    border-top: 1px solid rgba(240, 234, 214, 0.1);
    text-align: center;
}
html.theme-light .site-footer {
    border-top: 1px solid rgba(61, 61, 86, 0.1);
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}
.footer-content p {
    line-height: 1.5;
}
#policy .reveal h3 {
    text-align: center;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    color: var(--color-text);
}
#policy .reveal p, 
#policy .reveal ul {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    text-align: justify;
}
#policy .reveal li {
    text-align: justify;
}
#policy .reveal ul {
    list-style-position: inside;
    margin-bottom: 1.5rem;
}
#policy .reveal p, 
#policy .reveal li {
    line-height: 1.7;
    margin-bottom: 1rem;
}
#cookie-banner, #cookie-settings-modal {
    display: none;
    font-family: var(--font-body);
    font-size: 15px;
}
#cookie-banner.visible, #cookie-settings-modal.visible {
    display: flex;
}
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-surface);
    color: var(--color-text);
    padding: 1.5rem 2rem;
    z-index: 10001;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--color-border);
    align-items: center;
    justify-content: center;
}
.cookie-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1280px;
    gap: 2rem;
}
.cookie-banner-content p {
    margin: 0;
    max-width: 80ch;
    line-height: 1.5;
}
.cookie-banner-content p a {
    text-decoration: underline;
    text-underline-offset: 3px;
    color: var(--color-primary);
}
.cookie-banner-content p a:hover {
    color: var(--color-accent);
}
.cookie-banner-content p a::after {
    display: none;
}
.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}
.cookie-button {
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    border: 2px solid transparent;
    font-weight: 500;
    transition: var(--transition-dreamy);
}
.cookie-button.primary {
    background-color: var(--color-primary);
    color: #1A1A2D;
}
html.theme-light .cookie-button.primary {
    color: var(--color-background);
}
.cookie-button.primary:hover {
    background-color: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
}
.cookie-button.secondary {
    background-color: transparent;
    border-color: var(--color-secondary);
    color: var(--color-secondary);
}
.cookie-button.secondary:hover {
    background-color: var(--color-secondary);
    color: var(--color-surface);
    transform: translateY(-2px);
}
#cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    z-index: 10002;
}
.cookie-modal-content {
    background-color: var(--color-surface);
    padding: 2.5rem;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    box-shadow: var(--shadow-glow);
    border: 1px solid var(--color-border);
}
.cookie-modal-content p {
    max-width: 100%;
}
.cookie-modal-content a {
    text-decoration: underline;
    text-underline-offset: 3px;
    color: var(--color-primary);
}
.cookie-modal-content a:hover {
    color: var(--color-accent);
}
.cookie-modal-content a::after {
    display: none;
}
.cookie-category {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}
.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cookie-category-header strong {
    font-size: 1.1rem;
}
.cookie-category-description {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}
.cookie-modal-buttons {
    margin-top: 2rem;
    text-align: right;
}
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}
.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    transition: .4s;
    border-radius: 28px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: var(--color-secondary);
    transition: .4s;
    border-radius: 50%;
}
input:checked + .slider {
    background-color: var(--color-primary);
}
input:checked + .slider:before {
    transform: translateX(22px);
    background-color: var(--color-surface);
}
input:disabled + .slider {
    cursor: not-allowed;
    background-color: var(--color-border);
}
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-text { grid-column: 1 / -1; }
    .about-image { display: none; }
}
@media (max-width: 768px) {
    html { font-size: 15px; }
    body { cursor: auto; }
    .cursor-dot, .cursor-outline { display: none; }
    section { padding: 3.5rem 0; margin: 0 1rem; }
    .main-nav { display: none; }
    .gallery-item, .workshop-item {
        height: 180px;
    }
    .headline-part1, .headline-part2 { padding: 0; text-align: center; }
    .newsletter-form {
        flex-direction: column;
    }
    .cookie-banner-content {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    .cookie-banner-buttons {
        width: 100%;
        justify-content: space-between;
    }
    .cookie-button {
        flex-grow: 1;
        text-align: center;
    }
}
@media (max-width: 480px) {
    .gallery-item, .workshop-item {
        height: 120px;
    }
}
.pswp-caption-content {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 15px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    text-align: center;
    max-width: calc(100% - 40px);
}

/* ---------------------------------- */
/* # SALES PAGE STYLE */
/* ---------------------------------- */

/* Sales page specific variables - these extend the main ones */
:root {
    --color-success: #28a745;
    --color-danger: #dc3545;
    --transition-smooth: all 0.3s ease-in-out;
    --border-radius-small: 8px;
    --border-radius-medium: 16px;
    --border-radius-large: 50px;
}

/* Scope all sales page styles under .sales-page to prevent affecting main site */
.sales-page h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.5px;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 0.5rem;
}

.sales-page p.lead { 
    font-size: 1.25rem; 
    line-height: 1.6; 
    color: var(--color-text); 
}

.sales-page .problem-solution p, .sales-page .benefit-card p, .sales-page .offer-content p {
     max-width: 100%; 
}

.sales-page .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 8rem 0 4rem 0;
}

.sales-page .hero-content { 
    max-width: 80ch; 
    margin: 0 auto; 
}

.sales-page .hero h1 { 
    margin-bottom: 1.5rem; 
}

.sales-page .hero p { 
    margin-left: auto; 
    margin-right: auto; 
    margin-bottom: 1.5rem; 
    color: var(--color-text); 
}

.sales-page .hero-badge {
    display: inline-block;
    background-color: var(--color-surface);
    color: var(--color-accent);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-large);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.sales-page p.hook {
    font-size: 1.1rem;
    color: var(--color-text);
    font-style: italic;
    max-width: 60ch;
    margin-left: auto;
    margin-right: auto;
}

.sales-page p.why-now { 
    font-size: 0.9rem; 
    color: var(--color-secondary); 
    margin-top: -1rem; 
    margin-bottom: 2.5rem; 
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sales-page .cta-secondary {
    display: inline-block;
    color: var(--color-primary);
    text-decoration: none;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 3px;
    margin-top: 1.5rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.sales-page .cta-secondary:hover {
    color: var(--color-text);
    border-bottom-color: var(--color-text);
}

.sales-page .hero-key-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.sales-page .hero-key-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-secondary);
}

.sales-page .hero-key-benefits .icon { 
    width: 24px; 
    height: 24px; 
    color: var(--color-primary); 
    flex-shrink: 0;
}

.sales-page .problem-solution {
    background-color: var(--color-surface);
    border-radius: var(--border-radius-medium);
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.sales-page .problem-solution h3 {
     color: var(--color-text);
}

.sales-page .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.sales-page .benefit-card {
    background-color: var(--color-surface);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-medium);
    border: 1px solid var(--color-border);
    transition: var(--transition-dreamy);
}

.sales-page .benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

.sales-page .benefit-card .icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.sales-page .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.sales-page .testimonial-card {
    background-color: var(--color-surface);
    padding: 2rem;
    border-radius: var(--border-radius-medium);
    display: flex;
    flex-direction: column;
}

.sales-page .testimonial-card blockquote {
    border: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    font-style: italic;
    font-size: 1.1rem;
    flex-grow: 1;
}

.sales-page .testimonial-author { 
    display: flex; 
    align-items: center; 
    gap: 1rem; 
    margin-top: auto; 
}

.sales-page .testimonial-author img { 
    width: 50px; 
    height: 50px; 
    border-radius: 50%; 
    object-fit: cover; 
}

.sales-page .author-info strong { 
    display: block; 
    color: var(--color-text); 
}

.sales-page .author-info span { 
    font-size: 0.9rem; 
    color: var(--color-secondary); 
}

.sales-page .offer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--color-surface);
    padding: 2rem;
    border-radius: var(--border-radius-medium);
    border: 1px solid var(--color-border);
}

.sales-page .offer-video-placeholder {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--color-background);
    border: 2px dashed var(--color-border);
    border-radius: var(--border-radius-small);
    text-align: center;
    padding: 2rem;
    color: var(--color-secondary);
    min-height: 300px; 
    font-size: 1.2rem; 
}

.sales-page .offer-content {
    text-align: left;
}

.sales-page .offer-content h3 {
    color: var(--color-text);
}

.sales-page .offer-content .cta-button {
    margin-top: 1.5rem;
}

.sales-page .features-list {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
    padding-left: 0;
}

.sales-page .features-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
}

.sales-page .features-list .icon {
    width: 24px;
    height: 24px;
    color: var(--color-success);
    flex-shrink: 0;
}

.sales-page .offer-urgency {
    font-size: 1.1rem;
    color: var(--color-accent);
    font-weight: 600;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(224, 177, 203, 0.1);
    border: 1px solid var(--color-accent);
    border-radius: var(--border-radius-small);
    text-align: center;
}

.sales-page .guarantee {
    background-color: var(--color-surface);
    text-align: center;
    padding: 4rem 2rem;
    border-radius: var(--border-radius-medium);
}

.sales-page .guarantee .icon {
    width: 80px;
    height: 80px;
    color: var(--color-primary);
    margin: 0 auto 1.5rem auto;
}

.sales-page .guarantee p { 
    max-width: 60ch; 
    margin-left: auto; 
    margin-right: auto; 
}

.sales-page .comparison-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
    background-color: var(--color-surface);
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.sales-page .comparison-table th, .sales-page .comparison-table td {
    padding: 1.2rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.sales-page .comparison-table th {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-text);
    background-color: rgba(0,0,0,0.1);
}

.sales-page .comparison-table td:nth-child(2) { 
    font-weight: 600; 
    color: var(--color-text); 
}

.sales-page .comparison-table tr:last-child td { 
    border-bottom: none; 
}

.sales-page .comparison-table .icon-check { 
    color: var(--color-success); 
    font-size: 1.5rem; 
    line-height: 1; 
}

.sales-page .comparison-table .icon-cross { 
    color: var(--color-danger); 
    font-size: 1.5rem; 
    line-height: 1; 
}

.sales-page .faq-accordion { 
    max-width: 800px; 
    margin: 0 auto; 
}

.sales-page .faq-item {
    background-color: var(--color-surface);
    border-radius: var(--border-radius-small);
    margin-bottom: 1rem;
    border: 1px solid var(--color-border);
}

.sales-page .faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.5rem;
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sales-page .faq-question .icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease-in-out;
    flex-shrink: 0;
    margin-left: 1rem;
}

.sales-page .faq-item.active .faq-question .icon { 
    transform: rotate(45deg); 
}

.sales-page .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.sales-page .faq-answer p { 
    padding: 0 1.5rem 1.5rem 1.5rem; 
    margin: 0; 
}

.sales-page .final-cta { 
    text-align: center; 
}

.sales-page .final-cta p { 
    margin-left: auto; 
    margin-right: auto; 
}

.sales-page .floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    visibility: hidden;
}

.sales-page .floating-cta.visible { 
    opacity: 1; 
    transform: translateY(0); 
    visibility: visible; 
}

@media (min-width: 768px) {
    .sales-page .offer-grid {
        grid-template-columns: 1fr 1fr;
        padding: 3rem;
    }
}

/* Additional reusable classes */
.delay-200ms { transition-delay: 0.2s; }
.delay-300ms { transition-delay: 0.3s; }
.delay-400ms { transition-delay: 0.4s; }
.delay-500ms { transition-delay: 0.5s; }
.delay-600ms { transition-delay: 0.6s; }
.delay-700ms { transition-delay: 0.7s; }
.delay-100ms { transition-delay: 0.1s; }

.img-cover-180px {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--border-radius-small);
    margin-bottom: 1rem;
}

.img-responsive-shadow {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-small);
    box-shadow: var(--shadow-soft);
}

.img-centered-small {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem auto;
    display: block;
}

.policy-padding {
    padding-top: 10rem;
}

.hidden-icon {
    display: none;
}

.img-centered-small {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem auto;
    display: block;
}

.img-responsive-shadow {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-small);
    box-shadow: var(--shadow-soft);
}