:root {
    --bg-color: #0a172b;
    --card-bg: rgba(16, 33, 60, 0.8);
    --primary-color: #C5A059; /* Aged Gold */
    --secondary-color: #8C7035; /* Darker Gold */
    --accent-red: #ff4444;
    --text-color: #ffffff;
    --text-muted: #cbd5e1;
    --glass-border: 1px solid rgba(197, 160, 89, 0.2);
    --font-main: 'Outfit', sans-serif;
    --font-serif: 'Cinzel', serif;
    --font-tech: 'Rajdhani', sans-serif;
}

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

html, body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    padding-top: 0;
    position: relative;
}

/* Background Glow */
.background-glow {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(10, 23, 43, 0.8), transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(197, 160, 89, 0.1), transparent 40%);
    z-index: -2;
    animation: pulseGlow 10s infinite alternate;
}

@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.1); opacity: 0.8; }
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-color);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
    color: var(--primary-color);
}

.section-title::after {
    content: '⚓';
    display: block;
    font-size: 2rem;
    color: var(--secondary-color);
    margin: 10px auto 0;
}

.section-title::before {
    content: '';
    display: block;
    width: 150px;
    height: 3px;
    background: var(--primary-color);
    margin: 0 auto 10px;
    border-radius: 50%;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    padding: 15px 0;
    background: rgba(5, 5, 5, 0.9);
    border-bottom: 1px solid var(--primary-color);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.logo .highlight {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-family: var(--font-serif);
    border: 1px solid var(--primary-color);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #0a172b;
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(140, 112, 53, 0.5);
    filter: brightness(1.1);
}

.btn-small {
    padding: 8px 20px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-small:hover {
    background: var(--primary-color);
    color: #0a172b;
}

/* Hero Section */
.hero {
    padding: 50px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden; /* Prevent compass from causing scroll */
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.hero-text .subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: var(--font-serif);
}

.hero-text .description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 100%;
    font-weight: 500;
}

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

.image-wrapper img {
    width: 100%;
    max-width: 450px;
    display: block;
    filter: drop-shadow(0 0 20px rgba(197, 160, 89, 0.3));
}

.compass-decoration {
    position: absolute;
    top: -50px;
    right: -50px;
    font-size: 20rem;
    color: rgba(197, 160, 89, 0.05); /* Gold compass */
    z-index: -1;
    pointer-events: none;
    animation: rotateCompass 60s linear infinite;
}

@keyframes rotateCompass {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Cards & Containers (Vintage Map Style - Dark Mode) */
.method-card, .pricing-card, .feature-row, .col, .faq-item, .content-card {
    background: var(--card-bg);
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    position: relative;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

/* Corner Ornaments */
.method-card::before, .pricing-card::before, .feature-row::before, .col::before, .faq-item::before, .content-card::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    pointer-events: none;
}

.method-card::after, .pricing-card::after, .feature-row::after, .col::after, .faq-item::after, .content-card::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid transparent;
    /* Corner dots */
    background: 
        radial-gradient(circle, var(--primary-color) 3px, transparent 4px) top left,
        radial-gradient(circle, var(--primary-color) 3px, transparent 4px) top right,
        radial-gradient(circle, var(--primary-color) 3px, transparent 4px) bottom right,
        radial-gradient(circle, var(--primary-color) 3px, transparent 4px) bottom left;
    background-size: 15px 15px;
    background-repeat: no-repeat;
    pointer-events: none; /* Fix: Allow clicks to pass through */
}

/* Learning Methods */
.learning-methods { padding: 100px 0; }

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 3rem;
}

.method-card {
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--secondary-color);
}

.method-card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.result-box {
    background: rgba(197, 160, 89, 0.1);
    padding: 20px;
    border: 1px dashed var(--primary-color);
    margin-top: 2rem;
    display: inline-block;
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--primary-color);
}

/* Target Audience */
.target-audience { padding: 100px 0; }

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 3rem;
}

.audience-item {
    display: flex;
    align-items: flex-start;
    background: var(--card-bg);
    padding: 20px;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
}

.audience-item .check {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 15px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Differentiators */
.differentiators { padding: 100px 0; }

.feature-row {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
}

.feature-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(197, 160, 89, 0.3);
    line-height: 1;
    border-right: 3px double var(--primary-color);
    padding-right: 20px;
}

.feature-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

/* App Content Grid */
.app-content { padding: 100px 0; }

.grid-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.content-card {
    padding: 20px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.content-card i { color: var(--primary-color); margin-right: 10px; }

.highlight-card {
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.1), rgba(140, 112, 53, 0.1));
    border: 1px solid var(--primary-color);
}

.highlight-card i { color: #ffd700; }

/* Pricing */
.pricing-section { padding: 100px 0; text-align: center; }

.pricing-card {
    padding: 50px;
    max-width: 500px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(16, 33, 60, 0.9), rgba(10, 23, 43, 0.95));
}

.card-header h3 { font-size: 2rem; margin-bottom: 10px; }

.old-price {
    font-size: 1.5rem;
    color: var(--accent-red);
    text-decoration: line-through;
    font-weight: 700;
    margin-bottom: -15px;
    font-family: var(--font-serif);
    opacity: 0.8;
}

.price {
    font-size: 4rem;
    font-weight: 700;
    font-family: var(--font-serif);
    color: var(--primary-color);
    margin: 20px 0;
    text-shadow: 0 0 20px rgba(197, 160, 89, 0.3);
}

.price .currency { font-size: 2rem; vertical-align: super; }
.price .cents { font-size: 2rem; }

.payment-type {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.benefits-list {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
    padding-left: 20px;
}

.benefits-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    color: var(--text-color);
    font-weight: 600;
}

.benefits-list li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: 900;
}

.btn-large { width: 100%; padding: 15px; font-size: 1.2rem; }

/* Comparison Section */
.comparison-section { padding: 80px 0; }

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.col { padding: 40px; }

.traditional { background: rgba(255, 255, 255, 0.02); border-style: dashed; }
.traditional h3 { color: var(--text-muted); margin-bottom: 20px; font-size: 1.5rem; }
.traditional ul li { list-style: none; margin-bottom: 15px; color: var(--text-muted); }

.our-method {
    background: rgba(16, 33, 60, 0.9);
    border: 3px double var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.15);
}

.our-method h3 { color: var(--primary-color); margin-bottom: 20px; font-size: 1.8rem; }
.our-method ul li { list-style: none; margin-bottom: 15px; font-weight: 700; font-size: 1.1rem; color: var(--text-color); }

/* FAQ Section */
.faq-section { padding: 100px 0; }
.faq-grid { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 15px; }

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 { font-size: 1.1rem; font-family: var(--font-main); margin: 0; font-weight: 700; }
.toggle { font-size: 1.5rem; color: var(--primary-color); transition: transform 0.3s ease; }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
    background: rgba(0,0,0,0.2);
}

.faq-item.active .faq-answer { padding: 20px; max-height: 200px; }
.faq-item.active .toggle { transform: rotate(45deg); }

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: var(--bg-color);
    border-top: 1px solid rgba(197, 160, 89, 0.1);
}

.final-icon {
    margin-bottom: 20px;
}

.final-icon img {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(197, 160, 89, 0.3));
}

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

.final-cta p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.final-cta .small-note {
    font-size: 0.8rem;
    margin-top: 15px;
    margin-bottom: 0;
    opacity: 0.6;
}

/* Footer */
footer {
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid var(--primary-color);
    color: var(--text-muted);
    background: transparent;
}


/* Animations */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Visual Learning Section */
.visual-learning-section {
    padding: 80px 0;
    background: linear-gradient(to right, rgba(16, 33, 60, 0.5), rgba(10, 23, 43, 0.8));
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

.visual-learning-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.visual-image-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    border: 1px solid var(--primary-color);
}
.mind-map-image {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
    cursor: pointer;
}

.visual-image-container:hover .mind-map-image {
    transform: scale(1.05);
}

.magnifying-glass {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
    background: rgba(10, 23, 43, 0.7);
    padding: 20px;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    pointer-events: none;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1200px;
    max-height: 90vh;
    object-fit: contain;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 50px rgba(197, 160, 89, 0.2);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

.close-lightbox {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001;
}

.close-lightbox:hover,
.close-lightbox:focus {
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
}

.visual-image-container:hover .magnifying-glass {
    opacity: 1;
}

.visual-text .section-title.text-left {
    text-align: left;
    margin-bottom: 1rem;
}

.visual-text .section-title.text-left::after {
    margin: 10px 0 0;
}

.visual-text .section-title.text-left::before {
    margin: 0 0 10px;
}

.visual-text h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.visual-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-text h1 { font-size: 2.5rem; }
    .feature-row { flex-direction: column; text-align: center; }
    .feature-number { border-right: none; border-bottom: 3px double var(--primary-color); padding-bottom: 10px; padding-right: 0; margin-bottom: 20px; }
    .comparison-table { grid-template-columns: 1fr; }
    .our-method { transform: scale(1); }
    
    /* Mobile adjustments */
    .pricing-card { padding: 30px 20px; }
    .compass-decoration { font-size: 15rem; right: -30px; top: -30px; opacity: 0.03; }
    .section-title { font-size: 2rem; }
    .hero { padding: 40px 0 60px; }

    /* Visual Learning Mobile */
    .visual-learning-content { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .visual-text .section-title.text-left { text-align: center; }
    .visual-text .section-title.text-left::after { margin: 10px auto 0; }
    .visual-text .section-title.text-left::before { margin: 0 auto 10px; }
}

@keyframes pulseBtn {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(197, 160, 89, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(197, 160, 89, 0); }
}

.btn-pulse {
    animation: pulseBtn 2s infinite;
}
