/* FOMO Guides Stylesheet */

/* RESET & BASE */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-dark: #f8fafc;
    --bg-card: rgba(255, 255, 255, 0.7);
    --border-card: rgba(139, 92, 246, 0.12);
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --purple-electric: #7c3aed;
    --purple-glow: rgba(139, 92, 246, 0.06);
    --coral-vibrant: #e11d48;
    --coral-glow: rgba(244, 63, 94, 0.06);
    --gradient-primary: linear-gradient(135deg, var(--purple-electric) 0%, var(--coral-vibrant) 100%);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(15, 23, 42, 0.15);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--purple-electric);
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* AMBIENT GLOW EFFECTS */
.glow-bg {
    position: absolute;
    width: 45vw;
    height: 45vw;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.5;
}

.glow-purple {
    background: radial-gradient(circle, var(--purple-glow) 0%, transparent 70%);
    top: 5%;
    left: -10%;
}

.glow-coral {
    background: radial-gradient(circle, var(--coral-glow) 0%, transparent 70%);
    top: 30%;
    right: -10%;
}

/* CONTAINER & LAYOUT */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.max-w-700 {
    max-width: 700px;
}

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

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

.grid {
    display: grid;
    gap: 2.5rem;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .text-left {
        text-align: center;
    }
}

/* SECTIONS */
section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.15rem;
    margin-bottom: 3rem;
}

/* NAVBAR */
.navbar {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-card);
    background: rgba(248, 250, 252, 0.85);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo {
    height: 36px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--gradient-primary);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(244, 63, 94, 0.4);
}

.btn-secondary {
    background: rgba(15, 23, 42, 0.04);
    color: var(--text-primary);
    border: 1px solid var(--border-card);
}

.btn-secondary:hover {
    background: rgba(15, 23, 42, 0.08);
    border-color: rgba(15, 23, 42, 0.2);
}

.btn-large {
    padding: 1rem 2.25rem;
    font-size: 1.1rem;
}

.badge {
    display: inline-block;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: var(--purple-electric);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* GLASS CARDS */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: rgba(139, 92, 246, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}

/* HERO SECTION CSS */
.hero-title {
    font-size: 3.5rem;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

.cta-subtext {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.8rem;
}

.hero-image-container {
    display: flex;
    justify-content: center;
    position: relative;
}

.cover-card {
    padding: 1.25rem;
    max-width: 460px; /* Increased from 380px to maximize cover art visibility */
    width: 100%;
    overflow: hidden;
    position: relative;
}

.product-cover {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

/* PAIN SECTION */
.pain-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* VALUE SECTION MAP MOCKUP */
.interactive-map-mockup {
    width: 100%;
    height: 430px;
    background: #e2e8f0;
    border: 1px solid var(--border-card);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.map-header {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid var(--border-card);
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.map-title {
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-size: 0.95rem;
}

.map-filters {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(139, 92, 246, 0.15);
    color: var(--text-secondary);
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover {
    background: rgba(139, 92, 246, 0.08);
    color: var(--purple-electric);
}

.filter-btn.active {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.25);
}

.map-body {
    position: relative;
    width: 100%;
    height: calc(100% - 110px);
    background-color: #f1f5f9;
    background-image: 
        radial-gradient(rgba(139, 92, 246, 0.05) 1.5px, transparent 0),
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%' viewBox='0 0 600 300'><path d='M-50,80 C100,120 200,60 350,150 C450,210 500,160 650,220' fill='none' stroke='%23bfdbfe' stroke-width='35' opacity='0.7'/><path d='M-50,80 C100,120 200,60 350,150 C450,210 500,160 650,220' fill='none' stroke='%23dbeafe' stroke-width='25' opacity='0.9'/><line x1='120' y1='-50' x2='120' y2='350' stroke='%23e2e8f0' stroke-width='4'/><line x1='320' y1='-50' x2='320' y2='350' stroke='%23e2e8f0' stroke-width='4'/><line x1='480' y1='-50' x2='480' y2='350' stroke='%23e2e8f0' stroke-width='4'/><line x1='-50' y1='90' x2='650' y2='90' stroke='%23e2e8f0' stroke-width='4'/><line x1='-50' y1='210' x2='650' y2='210' stroke='%23e2e8f0' stroke-width='4'/><circle cx='120' cy='90' r='8' fill='%23cbd5e1'/><circle cx='320' cy='210' r='8' fill='%23cbd5e1'/><circle cx='480' cy='90' r='8' fill='%23cbd5e1'/></svg>");
    background-size: 20px 20px, cover;
    background-repeat: repeat, no-repeat;
}

.map-pin {
    position: absolute;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-card);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.08);
    cursor: pointer;
    transition: var(--transition-smooth);
    animation: pulse 2s infinite alternate;
}

.map-pin:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.2);
    z-index: 10;
}

.pin-1 {
    top: 25%;
    left: 10%;
    border-left: 3px solid var(--coral-vibrant);
}

.pin-2 {
    top: 55%;
    left: 30%;
    border-left: 3px solid var(--purple-electric);
}

.pin-3 {
    top: 15%;
    left: 55%;
    border-left: 3px solid #10b981;
}

.pin-4 {
    top: 65%;
    left: 65%;
    border-left: 3px solid #f59e0b;
}

.pin-5 {
    top: 35%;
    left: 80%;
    border-left: 3px solid var(--coral-vibrant);
}

.map-popup {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(8px);
    display: none;
    z-index: 20;
    text-align: left;
    animation: slideUp 0.3s ease-out;
}

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

.popup-close {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-secondary);
    cursor: pointer;
}

.popup-close:hover {
    color: var(--text-primary);
}

.popup-tag {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--purple-electric);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
}

.popup-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.4rem;
    color: var(--text-primary);
}

.popup-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0 0 0.5rem;
}

.popup-loc {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.map-footer {
    background: rgba(255, 255, 255, 0.9);
    border-top: 1px solid var(--border-card);
    padding: 0.5rem;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-secondary);
}

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

/* VALUE CONTENT */
.value-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.value-list {
    list-style: none;
}

.value-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.list-bullet {
    background: var(--gradient-primary);
    color: var(--text-primary);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

/* PREVIEW SECTION (ACCORDION) */
.accordion-container {
    margin-top: 3rem;
    text-align: left;
}

.accordion-item {
    margin-bottom: 1rem;
    padding: 1.5rem 2rem;
}

.accordion-item summary {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    user-select: none;
}

.accordion-content {
    margin-top: 1rem;
    padding-left: 1.5rem;
    border-left: 2px solid var(--purple-electric);
}

/* CTA BOX */
.cta-box {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.04) 0%, rgba(244, 63, 94, 0.04) 100%);
    border: 1px solid rgba(139, 92, 246, 0.15);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    margin-top: 2rem;
}

.cta-box h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.pricing-badge {
    margin: 2rem 0;
}

.price-old {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 1.3rem;
    margin-right: 1rem;
}

.price-new {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-guarantee {
    font-size: 0.8rem;
    margin-top: 1rem;
    color: var(--text-secondary);
}

/* FAQ SECTION */
.faq-list {
    margin-top: 2rem;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid var(--border-card);
    padding: 2rem 0;
}

.faq-item h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

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

/* FOOTER */
.footer {
    border-top: 1px solid var(--border-card);
    padding: 3rem 0;
    background: #f1f5f9;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.copyright {
    font-size: 0.75rem;
    color: rgba(15, 23, 42, 0.4);
    margin-bottom: 0;
}
