:root {
    --bg-dark: #0f0a0c; /* Deep dark background */
    --primary: #D4A5A5; /* Soft Rose Gold */
    --primary-dark: #B76E79; /* Dark Rose Gold */
    --accent: #E5B370; /* Gold accent */
    --text-light: #FFFFFF; /* Bright white for better contrast */
    --text-muted: rgba(255, 255, 255, 0.85); /* Increased opacity for better contrast */
    --white: #FFFFFF;
    
    /* Glassmorphism */
    --glass-bg: rgba(15, 10, 12, 0.6); /* Darker and more opaque for text contrast */
    --glass-border: rgba(212, 165, 165, 0.25);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.6);
    --glass-hover: rgba(50, 30, 35, 0.7);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --radius: 16px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    background-image: url('bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Animated Background Orbs */
.bg-orbs {
    position: fixed;
    top: 0; left: 0; 
    width: 100vw; height: 100vh;
    z-index: -1;
    overflow: hidden;
    background-color: rgba(15, 10, 12, 0.7); /* Dark overlay to keep text readable */
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s infinite alternate ease-in-out;
}

.orb-1 {
    width: 40vw; height: 40vw;
    background: rgba(183, 110, 121, 0.4); /* Rose Gold */
    top: -10%; left: -10%;
}

.orb-2 {
    width: 35vw; height: 35vw;
    background: rgba(109, 76, 83, 0.5); /* Darker rose/purple */
    bottom: -10%; right: -10%;
    animation-delay: -10s;
}

.orb-3 {
    width: 25vw; height: 25vw;
    background: rgba(229, 179, 112, 0.2); /* Gold hint */
    top: 40%; left: 60%;
    animation-duration: 25s;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(15%, 15%) scale(1.2); }
}

/* Glassmorphism Utility */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: var(--radius);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
}

/* --- BUTTONS --- */
.cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 400px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 50px; 
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    width: 100%;
}

.primary-btn {
    background: linear-gradient(135deg, rgba(183, 110, 121, 1) 0%, rgba(109, 76, 83, 1) 100%);
    color: var(--white);
    border: 1px solid var(--primary);
    box-shadow: 0 8px 20px rgba(183, 110, 121, 0.6);
    backdrop-filter: blur(5px);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 15px 24px;
}

.primary-btn:hover {
    background: linear-gradient(135deg, rgba(212, 165, 165, 1) 0%, rgba(183, 110, 121, 1) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(183, 110, 121, 0.8);
}

.primary-btn i {
    font-size: 1.3rem;
}

/* Animations */
.pulse-anim {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(183, 110, 121, 0.4); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 15px rgba(183, 110, 121, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(183, 110, 121, 0); }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-style: italic;
    color: var(--text-light);
}

.divider {
    height: 2px;
    width: 80px;
    background-color: var(--primary);
    margin: 0 auto;
    border-radius: 2px;
}

/* --- 1. HERO SECTION --- */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 60px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 15px;
}

.badge {
    background-color: rgba(212, 165, 165, 0.15);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    display: inline-block;
    border: 1px solid var(--glass-border);
}

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--white);
}

.subtext {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 600px;
}

/* --- 2. ABOUT ME --- */
.about {
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
    padding: 20px;
}

.about-image {
    position: relative;
    max-width: 350px;
    margin: 0 auto;
}

.profile-img {
    width: 100%;
    border-radius: var(--radius);
    position: relative;
    z-index: 2;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: 85% 15%;
    border: 1px solid var(--glass-border);
}

.img-accent {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    z-index: 1;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.about-text p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: var(--text-muted);
}

/* --- 3. WHAT YOU WILL LEARN --- */
.learn-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.learn-card {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.learn-card:hover {
    transform: translateY(-5px);
    background: var(--glass-hover);
    border-color: var(--primary);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(212, 165, 165, 0.15);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    border: 1px solid var(--glass-border);
}

.learn-card p {
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* --- 4. WHO THIS IS FOR --- */
.audience-content {
    padding: 30px 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.audience h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--white);
}

.check-list {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.check-list li {
    font-size: 1.1rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
}

.check-list i {
    color: var(--primary);
    font-size: 1.3rem;
}

/* --- 5. PROOF SECTION --- */
.proof-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.proof-img-container {
    overflow: hidden;
    padding: 10px;
}

.proof-img-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: var(--transition);
}

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

/* Swiper specific styles */
.proof-slider {
    padding-bottom: 50px;
    width: 100%;
}

.proof-slider .swiper-slide {
    height: auto;
    display: flex;
}

.proof-slider .testimonial-card,
.proof-slider .proof-img-container {
    width: 100%;
    margin: 0;
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--primary) !important;
}

/* --- TESTIMONIALS --- */
.testimonial-card {
    padding: 24px;
    margin: 10px 0;
    text-align: left;
    border-left: 4px solid var(--primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-card.hero-testimonial {
    margin: 0 0 30px 0;
    max-width: 600px;
    border-left: none;
    border-top: 4px solid var(--primary);
    align-items: center;
    text-align: center;
}

.testimonial-card .stars {
    color: var(--accent);
    margin-bottom: 10px;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.testimonial-card .author {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

/* --- 6. HOW IT WORKS --- */
.steps-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
}

.step-card {
    padding: 30px;
    text-align: center;
    width: 100%;
    max-width: 400px;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 50px;
    height: 50px;
    background: rgba(212, 165, 165, 0.2);
    color: var(--primary);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--text-light);
}

.step-sub {
    color: var(--text-muted);
    font-size: 1rem;
}

.step-connector {
    width: 2px;
    height: 40px;
    background-color: var(--glass-border);
    z-index: 1;
}

/* --- 7. FAQ --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    background: var(--glass-hover);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    color: var(--primary);
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active {
    background: var(--glass-hover);
    border-left: 3px solid var(--primary);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding: 0 24px 20px;
    max-height: 200px;
}

/* --- 8 & 9. FINAL CTA --- */
.final-cta {
    text-align: center;
}

.final-cta .container {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.final-cta h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 20px;
}

.urgency-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    margin-bottom: 30px;
    background: rgba(212, 165, 165, 0.1);
    border: 1px solid var(--primary);
    border-radius: var(--radius);
    text-align: center;
}

.urgency-banner h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.urgency-banner .urgency-main {
    font-weight: 500;
    margin-bottom: 5px;
}

.urgency-banner .urgency-sub {
    color: var(--primary);
    font-size: 0.95rem;
}

/* Telegram Button Styles */
.telegram-section {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.telegram-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-align: center;
}

.telegram-btn {
    background: rgba(34, 158, 217, 0.2);
    border: 1px solid rgba(34, 158, 217, 0.4);
    color: #55bcef;
    backdrop-filter: blur(5px);
}

.telegram-btn:hover {
    background: rgba(34, 158, 217, 0.4);
    color: var(--white);
    transform: translateY(-3px);
}

/* --- FOOTER --- */
footer {
    text-align: center;
    padding: 30px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-top: 1px solid var(--glass-border);
    margin-top: 40px;
}

.designer-credit {
    margin-top: 10px;
    font-size: 0.85rem;
}

.designer-credit a {
    color: var(--primary);
    font-weight: 500;
    transition: var(--transition);
}

.designer-credit a:hover {
    color: var(--white);
    text-shadow: 0 0 8px rgba(212, 165, 165, 0.5);
}

/* --- MEDIA QUERIES --- */
@media (min-width: 768px) {
    section { padding: 100px 0; }
    
    .hero-content { padding: 50px 30px; }
    
    .hero h1 { font-size: 3.5rem; }
    
    .subtext { font-size: 1.25rem; margin-bottom: 50px; }
    
    .section-header h2, .about-text h2, .audience h2 { font-size: 2.5rem; }
    
    .final-cta h2 { font-size: 2.8rem; }
    
    .final-cta .container { padding: 60px 30px; }
    
    .about-grid { padding: 40px; grid-template-columns: 1fr 1.5fr; gap: 60px; }
    
    .audience-content { padding: 50px 30px; }
    
    .cta-button { padding: 16px 32px; }
    
    .primary-btn { font-size: 1.2rem; padding: 18px 36px; }
    
    .urgency-banner { padding: 20px 40px; margin-bottom: 40px; }
    
    .learn-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .steps-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    .step-connector {
        width: 100px;
        height: 2px;
        margin-top: 50px;
    }
}
