/* Variables & Reset */
:root {
    --color-creme: #F8F5EF;
    --color-gold: #D8C7A0;
    --color-bordeaux: #7A2E2A;
    --color-grey: #6F6E6B;
    --color-olive: #9A9A84;
    --color-white: #FFFFFF;

    --font-heading: 'Cormorant Garamond', serif;
    --font-subheading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-creme);
    color: var(--color-grey);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Black Friday Banner */
.black-friday-banner {
    width: 100%;
    background-color: #000;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1001;
}

.black-friday-banner img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--color-bordeaux);
    font-weight: 600;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1.5s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Scroll Reveal Class (Managed by JS) */
.fade-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    background: rgba(248, 245, 239, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(216, 199, 160, 0.3);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 12px;
    height: 12px;
    background-color: var(--color-bordeaux);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(216, 199, 160, 0.4);
}

.logo-text {
    font-family: var(--font-subheading);
    font-weight: 700;
    color: var(--color-bordeaux);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

/* Hero Section */
.hero-section {
    padding-top: 140px;
    padding-bottom: var(--spacing-lg);
    text-align: center;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eyebrow {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-olive);
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: var(--spacing-sm);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-grey);
    margin-bottom: var(--spacing-md);
}

/* Video Headline */
.video-headline-wrapper {
    text-align: center;
    margin-bottom: 1rem;
    margin-top: -1rem;
}

.video-headline-badge {
    display: inline-block;
    background-color: #fff;
    border: 1px solid var(--color-gold);
    color: var(--color-bordeaux);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.video-container {
    margin: var(--spacing-md) auto;
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(122, 46, 42, 0.15);
    border: 1px solid rgba(216, 199, 160, 0.5);
}

.cta-scroll {
    margin-top: var(--spacing-md);
}

/* Hero Pulse Button */
.pulse-hero {
    animation: pulse-hero 2s infinite;
}

@keyframes pulse-hero {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(122, 46, 42, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(122, 46, 42, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(122, 46, 42, 0);
    }
}

/* System Section */
.system-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--color-creme) 0%, #F2EFE6 100%);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xs);
}

.section-header p {
    font-family: var(--font-subheading);
    color: var(--color-olive);
    font-size: 1.1rem;
}

.grid-system {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: var(--spacing-md);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(122, 46, 42, 0.08);
}

.card-large {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}

@media (min-width: 768px) {
    .card-large {
        flex-direction: row;
        gap: var(--spacing-lg);
        text-align: left;
    }

    .card-large .card-content {
        flex: 1;
    }

    .card-large .card-image {
        flex: 1;
        max-width: 400px;
    }
}

.card-icon {
    font-size: 1.5rem;
    color: var(--color-gold);
    display: block;
    margin-bottom: var(--spacing-sm);
}

.card h3 {
    font-family: var(--font-subheading);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-bordeaux);
}

.card p {
    font-size: 0.95rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-grey);
}

.price-tag {
    font-weight: 600;
    color: var(--color-olive);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: var(--spacing-sm);
    display: inline-block;
}

/* System Section Updates */
.free-price {
    color: var(--color-bordeaux);
    font-weight: 800;
    font-size: 1.1rem;
    margin-left: 0.5rem;
}

.bonus-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: var(--color-bordeaux);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

/* Testimonials */
.testimonials-section {
    padding: var(--spacing-xl) 0;
}

.highlight-text {
    color: var(--color-bordeaux);
    font-weight: 600;
    margin-top: var(--spacing-sm);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

/* Testimonial Images */
.testimonial-image img {
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.testimonial-image img:hover {
    transform: scale(1.02);
}

.cta-center {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.cta-center p {
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--color-bordeaux);
    color: var(--color-white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 20px rgba(122, 46, 42, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(122, 46, 42, 0.4);
}

.btn-outline {
    display: inline-block;
    border: 2px solid var(--color-bordeaux);
    color: var(--color-bordeaux);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    margin-top: var(--spacing-sm);
}

.btn-outline:hover {
    background-color: var(--color-bordeaux);
    color: var(--color-white);
}

/* Authority */
.authority-section {
    padding: var(--spacing-xl) 0;
    background-color: #F2EFE6;
}

.quotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.quote-block {
    text-align: center;
}

.quote-block blockquote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-bordeaux);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.quote-block cite {
    display: block;
    font-style: normal;
}

.quote-block cite strong {
    display: block;
    font-family: var(--font-subheading);
    font-size: 1.1rem;
}

.quote-block cite span {
    font-size: 0.9rem;
    color: var(--color-olive);
}

/* Author */
.author-section {
    padding: var(--spacing-xl) 0;
}

.author-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
}

@media (min-width: 768px) {
    .author-grid {
        flex-direction: row;
        align-items: center;
    }

    .author-image {
        flex: 1;
        max-width: 400px;
    }

    .author-content {
        flex: 1;
    }
}

.author-image img {
    border-radius: 20px;
    box-shadow: 20px 20px 0 var(--color-gold);
}

.author-content h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.author-content p {
    margin-bottom: var(--spacing-sm);
}

/* Guarantee */
.guarantee-section {
    padding: var(--spacing-lg) 0;
}

.guarantee-box {
    border: 2px solid var(--color-gold);
    padding: var(--spacing-lg);
    border-radius: 20px;
    text-align: center;
    position: relative;
    background: var(--color-white);
}

.guarantee-badge {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-bordeaux);
    color: var(--color-white);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(122, 46, 42, 0.4);
}

.guarantee-badge span {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.guarantee-badge small {
    font-size: 0.7rem;
}

.guarantee-text h3 {
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

/* Pricing */
.pricing-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--color-creme) 0%, #E8E4D9 100%);
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .pricing-grid {
        flex-direction: row;
        align-items: stretch;
    }
}

.pricing-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: var(--spacing-md);
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.pricing-card.premium {
    border: 2px solid var(--color-gold);
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(122, 46, 42, 0.15);
    z-index: 2;
}

/* Pricing Updates */
.ugly-card {
    background-color: #f5f5f5 !important;
    border: 1px solid #e0e0e0 !important;
    box-shadow: none !important;
    opacity: 0.9;
}

.ugly-card .card-header h3,
.ugly-card .card-header p,
.ugly-card .price {
    color: #888;
}

.ugly-card .experience-status.bad {
    background-color: #e0e0e0;
    color: #777;
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-bordeaux);
    color: var(--color-white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: var(--spacing-md);
}

.card-header h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.card-body ul {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.card-body li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.card-body li.check::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-olive);
    font-weight: bold;
}

.card-body li.negative {
    color: #aaa;
    text-decoration: line-through;
}

.experience-status {
    text-align: center;
    padding: 0.5rem;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.experience-status.bad {
    background: #f0f0f0;
    color: #888;
}

.experience-status.good {
    background: #E6F4EA;
    color: #1E8E3E;
}

.note {
    text-align: center;
    font-size: 0.8rem;
    color: #aaa;
    font-style: italic;
}

.card-footer {
    margin-top: auto;
    text-align: center;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-grey);
    margin-bottom: var(--spacing-sm);
}

.price-strike {
    text-decoration: line-through;
    color: #aaa;
    font-size: 0.9rem;
}

.price-final {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-bordeaux);
    margin-bottom: var(--spacing-sm);
}

.text-link-muted {
    display: block;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #999;
    text-decoration: underline;
    line-height: 1.4;
}

.text-link-muted:hover {
    color: #666;
}

.price-strike-red {
    color: #cc0000;
    text-decoration: line-through;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.price-final-large {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-bordeaux);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.glow {
    animation: glow 2s infinite;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 0 0 rgba(122, 46, 42, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(122, 46, 42, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(122, 46, 42, 0);
    }
}

/* Footer */
footer {
    background: var(--color-bordeaux);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--spacing-lg) 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-links {
    margin-bottom: var(--spacing-md);
}

.footer-links a:hover {
    color: var(--color-white);
}

.separator {
    margin: 0 0.5rem;
}

.disclaimer {
    font-size: 0.75rem;
    opacity: 0.6;
    max-width: 600px;
    margin: 0 auto var(--spacing-md);
}