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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #F5F7F2;
    background: linear-gradient(to bottom, #1C1C1C 0%, #1B5E20 50%, #1C1C1C 100%);
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body::-webkit-scrollbar {
    display: none;
}

.main-container {
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
}

.bg-image {
    position: absolute;
    inset: 0;
    background-image: url('ddd228a2-f9f1-4e69-be9d-71d2a8c53b21.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.overlay-dark {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.6) 100%);
}

.overlay-mystical {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10,15,10,0.6) 100%);
}

.golden-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: rgba(200,169,81,0.1);
    border-radius: 50%;
    filter: blur(180px);
}

.particles {
    position: absolute;
    inset: 0;
    opacity: 0.5;
}

.particle {
    position: absolute;
    background: #C8A951;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.particle-1 {
    top: 25%;
    left: 25%;
    width: 6px;
    height: 6px;
}

.particle-2 {
    top: 66%;
    left: 75%;
    width: 4px;
    height: 4px;
    animation-delay: 0.3s;
}

.particle-3 {
    bottom: 33%;
    right: 33%;
    width: 8px;
    height: 8px;
    opacity: 0.6;
    animation-delay: 0.8s;
}

.particle-4 {
    bottom: 33%;
    right: 50%;
    width: 8px;
    height: 8px;
    background: #8b6f47;
    animation-delay: 0.6s;
}

.particle-5 {
    top: 50%;
    left: 20%;
    width: 4px;
    height: 4px;
    animation-delay: 2s;
}

.particle-6 {
    top: 33%;
    right: 20%;
    width: 6px;
    height: 6px;
    opacity: 0.8;
    animation-delay: 1.2s;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.warm-glow-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 384px;
    height: 384px;
    background: rgba(200,169,81,0.2);
    border-radius: 50%;
    filter: blur(140px);
}

.warm-glow-right {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 384px;
    height: 384px;
    background: rgba(26,77,46,0.3);
    border-radius: 50%;
    filter: blur(140px);
}

.texture-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background: radial-gradient(circle at 50% 50%, #C8A951 1px, transparent 1px);
    background-size: 40px 40px;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 4rem 1rem;
    text-align: center;
}

.hero-title {
    font-size: clamp(1.5rem, 5vw, 3.75rem);
    font-weight: bold;
    color: #C8A951;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: rgba(245,247,242,0.9);
    margin-bottom: 1.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

.cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #1B5E20;
    color: #F5F7F2;
    padding: 1.25rem 2rem;
    border-radius: 9999px;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 25px 50px -12px rgba(27,94,32,0.5);
    width: 100%;
    max-width: 28rem;
    text-align: center;
}

.cta-button:hover {
    background: #2E7D32;
    transform: scale(1.02);
}

.cta-button:active {
    transform: scale(0.95);
}

.sparkle {
    font-size: 1.25rem;
    animation: pulse 2s infinite;
}

.cta-badges {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
}

.badge-white {
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
}

.badge-gold {
    color: #C8A951;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Moon Timer */
.moon-timer {
    margin-top: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.timer-card {
    background: linear-gradient(to bottom right, #1C1C1C 0%, rgba(27,94,32,0.3) 50%, #1C1C1C 100%);
    backdrop-filter: blur(16px);
    border: 2px solid rgba(200,169,81,0.4);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(200,169,81,0.2);
    position: relative;
}

.timer-text {
    text-align: center;
    margin-bottom: 1rem;
    padding-top: 0.75rem;
}

.timer-text p {
    color: #F5F7F2;
    font-weight: 600;
    font-size: clamp(0.875rem, 2vw, 1.125rem);
    line-height: 1.6;
}

.moon-phase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.moon-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    position: relative;
}

.moon-glow {
    position: absolute;
    inset: 0;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: rgba(200,169,81,0.3);
    filter: blur(40px);
    animation: pulse 2s infinite;
}

.moon-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    border: 2px solid rgba(200,169,81,0.5);
    box-shadow: 0 0 30px rgba(200,169,81,0.8);
    background: #C8A951;
}

#moonSymbol {
    font-size: 1.5rem;
}

.moon-phase-name {
    color: #C8A951;
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    font-weight: bold;
}

.moon-illumination {
    color: #B39DDB;
    font-size: clamp(0.625rem, 1.5vw, 0.75rem);
}

.time-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    text-align: center;
}

.time-unit {
    display: flex;
    align-items: baseline;
    gap: 0.125rem;
}

.time-value {
    font-size: clamp(2rem, 8vw, 3rem);
    font-weight: bold;
    color: #C8A951;
    filter: drop-shadow(0 0 10px rgba(200,169,81,0.5));
}

.time-label {
    color: #B39DDB;
    font-size: clamp(0.75rem, 2vw, 0.875rem);
}

.time-separator {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    color: #C8A951;
    animation: pulse 2s infinite;
}

.sparkle-decoration {
    position: absolute;
    font-size: 1rem;
    color: #C8A951;
    animation: pulse 2s infinite;
}

.sparkle-top {
    top: 1rem;
    right: 1rem;
}

.sparkle-bottom {
    bottom: 1rem;
    left: 1rem;
    color: #B39DDB;
    animation-delay: 0.5s;
}

.scroll-indicator {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    animation: bounce 2s infinite;
}

.chevron {
    color: #C8A951;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Mystical Section */
.mystical-section {
    position: relative;
    background: linear-gradient(to bottom, #1C1C1C 0%, #2C1810 50%, #1C1C1C 100%);
    padding: 3rem 0;
    overflow: hidden;
}

.section-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.section-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.section-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(28,28,28,0.8) 0%, rgba(44,24,16,0.7) 50%, rgba(28,28,28,0.8) 100%);
}

.content-wrapper {
    max-width: 64rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: bold;
    text-align: center;
    color: #C8A951;
    margin-bottom: 2rem;
}

.feature-image {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(200,169,81,0.2);
    border: 2px solid rgba(200,169,81,0.3);
}

.cta-center {
    margin-top: 2rem;
    text-align: center;
}

.cta-button-gold {
    display: inline-block;
    background: #C8A951;
    color: #1C1C1C;
    padding: 1.25rem 2rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 25px 50px -12px rgba(200,169,81,0.5);
    width: 100%;
    max-width: 28rem;
    text-align: center;
}

.cta-button-gold:hover {
    background: #D4B968;
    transform: scale(1.02);
}

.cta-button-gold:active {
    transform: scale(0.95);
}

/* Modules Section */
.modules-section {
    padding: 5rem 0;
    background: #3E2723;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.section-title-large {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: bold;
    color: #C8A951;
    margin-bottom: 1.5rem;
}

.modules-grid {
    max-width: 88rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.module-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    overflow: hidden;
    border: 1px solid rgba(27,94,32,0.1);
    transition: border-color 0.3s;
}

.module-card:hover {
    border-color: rgba(200,169,81,0.5);
}

.module-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .module-content {
        grid-template-columns: 1fr 1fr;
    }
}

.module-text {
    padding: 3rem;
}

.module-text h3 {
    font-size: clamp(1.25rem, 3vw, 1.875rem);
    font-weight: bold;
    color: #1B5E20;
    margin-bottom: 1rem;
}

.module-intro {
    font-size: clamp(0.875rem, 2vw, 1rem);
    color: #1C1C1C;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.module-intro-bold {
    font-weight: 600;
}

.module-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: clamp(0.875rem, 2vw, 1rem);
    color: rgba(28,28,28,0.8);
}

.module-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.check-icon {
    color: #C8A951;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.module-image {
    height: 16rem;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

@media (min-width: 768px) {
    .module-image {
        height: auto;
    }
}

.module-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

@media (min-width: 768px) {
    .module-reverse {
        direction: rtl;
    }

    .module-reverse > * {
        direction: ltr;
    }
}

/* Reconnection Section */
.reconnection-section {
    padding: 5rem 0;
    background: #1C1C1C;
}

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

.image-center img {
    max-width: 100%;
    height: auto;
}

/* Benefits Image Section */
.benefits-image-section {
    padding: 5rem 0;
    background: #1C1C1C;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background: #1C1C1C;
}

.content-max {
    max-width: 64rem;
    margin: 0 auto;
}

.magic-connection {
    margin-bottom: 3rem;
    padding: 0 1rem;
    text-align: center;
}

.magic-title {
    font-size: clamp(1.875rem, 4vw, 2.25rem);
    font-weight: bold;
    color: #C8A951;
    margin-bottom: 1.5rem;
}

.magic-content {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #F5F7F2;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.6;
}

.magic-item {
    border-left: 4px solid #C8A951;
    padding-left: 1rem;
}

.magic-item strong {
    color: #C8A951;
}

.testimonials-title {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: bold;
    color: #C8A951;
    margin-bottom: 2rem;
    text-align: center;
    padding: 0 1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.testimonial-img {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.testimonial-img:hover {
    transform: scale(1.05);
}

.testimonial-full {
    max-width: 28rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .testimonial-full {
        grid-column: span 2;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 3rem 0;
    background: linear-gradient(to bottom, #1C1C1C 0%, #1B5E20 50%, #1C1C1C 100%);
}

.pricing-card {
    max-width: 42rem;
    margin: 0 auto;
    background: linear-gradient(to bottom right, #0a0a0a 0%, #1a1a1a 100%);
    backdrop-filter: blur(4px);
    border: 2px solid #1B5E20;
    border-radius: 1.5rem;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}

.discount-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #C8A951;
    color: #1C1C1C;
    padding: 0.5rem 1.5rem;
    border-bottom-left-radius: 1rem;
    font-weight: bold;
    font-size: 1rem;
}

.pricing-content {
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 2.5rem;
}

@media (min-width: 768px) {
    .pricing-content {
        padding-top: 0;
    }
}

.pricing-title {
    font-size: clamp(1.25rem, 3vw, 2.25rem);
    font-weight: bold;
    color: #C8A951;
    margin-bottom: 1.5rem;
}

.pricing-details {
    margin-bottom: 1.5rem;
}

.pricing-intro {
    color: white;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.price-old {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.price-old span {
    font-size: 2.25rem;
    color: #666;
    text-decoration: line-through;
    display: block;
}

.price-new {
    font-size: clamp(3.75rem, 10vw, 4.5rem);
    font-weight: bold;
    color: #C8A951;
    display: block;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(200,169,81,0.5));
}

.offer-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: rgba(200,169,81,0.2);
    border: 1px solid #C8A951;
    border-radius: 9999px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .offer-badge {
        flex-direction: row;
    }
}

.bolt-icon {
    color: #C8A951;
    font-size: 1.25rem;
}

.offer-badge span:last-child {
    color: #C8A951;
    font-weight: bold;
    font-size: clamp(0.875rem, 2vw, 1rem);
    text-align: center;
}

.cta-button-pricing {
    display: block;
    width: 100%;
    background: #C8A951;
    color: #1C1C1C;
    text-align: center;
    padding: 1.25rem 2rem;
    border-radius: 9999px;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 25px 50px -12px rgba(200,169,81,0.5);
}

.cta-button-pricing:hover {
    background: #D4B968;
    transform: scale(1.02);
}

.cta-button-pricing:active {
    transform: scale(0.95);
}

.offer-timer {
    text-align: center;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #C8A951;
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: bold;
}

@media (min-width: 640px) {
    .offer-timer {
        flex-direction: row;
    }
}

.timer-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.clock-icon {
    font-size: 1.25rem;
}

.timer-value {
    font-size: clamp(1.125rem, 2vw, 1rem);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: #1C1C1C;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(27,94,32,0.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(179,157,219,0.3);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: #C8A951;
}

.faq-item summary {
    color: #C8A951;
    font-weight: 600;
    font-size: clamp(1rem, 2vw, 1.125rem);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.chevron-icon {
    color: #C8A951;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item[open] .chevron-icon {
    transform: rotate(180deg);
}

.faq-item p {
    font-size: clamp(0.875rem, 2vw, 1rem);
    color: rgba(245,247,242,0.8);
    margin-top: 1rem;
}

.faq-cta {
    text-align: center;
    padding: 0 1rem;
    margin-top: 3rem;
}

.cta-note {
    color: #F5F7F2;
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: #1C1C1C;
    padding: 2rem 0;
    border-top: 1px solid rgba(27,94,32,0.3);
}

.footer p {
    text-align: center;
    color: rgba(245,247,242,0.6);
    margin-bottom: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .hero-content {
        padding: 2rem 1rem;
    }

    .timer-card {
        padding: 1.5rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .module-text {
        padding: 1.5rem;
    }
}
