/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Merriweather:ital,wght@0,300;0,400;0,700;1,300&display=swap');

:root {
    --primary-gold: #D4AF37;
    --secondary-gold: #C5A028;
    --dark-bg: #111111;
    --dark-card: #1a1a1a;
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
    --accent-red: #ff4444;
    --confidential-bg: #2a2a2a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Merriweather', serif;
    line-height: 1.8;
    color: var(--text-main);
    background-color: var(--dark-bg);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
}

strong {
    color: #ffffff;
    font-weight: 700;
}

a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #fff;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url('hero-bg-pattern.png');
    background-size: cover;
    padding: 80px 20px;
    text-align: center;
    border-bottom: 3px solid var(--primary-gold);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pre-headline {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9em;
    color: var(--primary-gold);
    margin-bottom: 15px;
    display: inline-block;
    border: 1px solid var(--primary-gold);
    padding: 5px 15px;
    border-radius: 4px;
}

.headline {
    font-size: 3em;
    font-weight: 800;
    text-transform: capitalize;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
    background: -webkit-linear-gradient(#fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subheadline {
    font-size: 1.4em;
    font-weight: 300;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.hero-image-container {
    margin: 40px auto;
    max-width: 700px;
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 25px;
}

/* Story/Text Sections */
.story-text {
    font-size: 1.15em;
    margin-bottom: 25px;
    color: #d0d0d0;
}

.highlight-box {
    background: linear-gradient(135deg, #1f1f1f 0%, #252525 100%);
    border-left: 4px solid var(--primary-gold);
    padding: 30px;
    margin: 40px 0;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.section-title {
    font-size: 2.2em;
    text-align: center;
    margin: 60px 0 40px 0;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-gold);
    margin: 15px auto 0;
}

/* Classified/Redacted Section */
.classified-section {
    background-color: #1a1a1a;
    border: 1px solid #333;
    padding: 5px;
    margin: 50px 0;
    position: relative;
    background-image: repeating-linear-gradient(45deg, #1f1f1f 0, #1f1f1f 10px, #1a1a1a 10px, #1a1a1a 20px);
}

.classified-inner {
    background: #151515;
    border: 1px dashed #444;
    padding: 40px;
    position: relative;
}

.classified-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-red);
    color: white;
    font-family: 'Inter', sans-serif;
    padding: 5px 15px;
    text-transform: uppercase;
    font-size: 0.8em;
    letter-spacing: 1px;
    font-weight: bold;
    transform: rotate(2deg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.secret-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: flex-start;
}

.secret-icon {
    font-size: 1.5em;
    color: var(--primary-gold);
    margin-right: 20px;
    margin-top: 5px;
}

/* PERMANENTLY REDACTED STYLE - DO NOT REVEAL */
.redacted {
    background-color: #000;
    color: transparent;
    /* Text stays hidden */
    padding: 2px 8px;
    border-radius: 2px;
    cursor: not-allowed;
    font-family: monospace;
    letter-spacing: 2px;
    user-select: none;
    position: relative;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    text-shadow: none;
}

/* On hover, we keep it hidden but show a lock signal */
.redacted:hover {
    color: transparent;
    /* DO NOT REVEAL */
    box-shadow: 0 0 10px var(--accent-red);
}

.redacted::after {
    content: "TOP SECRET";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #444;
    font-size: 0.4em;
    letter-spacing: 1px;
    pointer-events: none;
    opacity: 1;
    font-weight: bold;
}

.redacted:hover::after {
    content: "LOCKED";
    color: var(--accent-red);
    opacity: 1;
}

/* CTA Button */
.cta-container {
    text-align: center;
    margin: 50px 0;
}

.btn-main {
    background: linear-gradient(180deg, #F9D976 0%, #B8941F 100%);
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 1.3em;
    font-weight: 800;
    padding: 25px 60px;
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    border: 2px solid #fff5c3;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
    color: #000;
}

.btn-subtext {
    display: block;
    margin-top: 15px;
    font-size: 0.9em;
    color: #888;
}

/* Guarantee */
.guarantee-seal {
    border: 2px solid #444;
    background: #1a1a1a;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin: 60px 0;
}

.guarantee-title {
    color: var(--primary-gold);
    font-size: 1.5em;
    margin-bottom: 15px;
    margin-top: 15px;
}

/* Footer */
footer {
    background: #0a0a0a;
    padding: 60px 20px;
    text-align: center;
    font-size: 0.9em;
    color: #666;
    border-top: 1px solid #222;
}

footer a {
    color: #888;
    margin: 0 10px;
}

footer a:hover {
    color: var(--primary-gold);
}

/* Testimonials */
.testimonials-section {
    margin: 60px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 30px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.testimonial-card::before {
    content: '"';
    font-size: 4em;
    color: var(--primary-gold);
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
    font-family: serif;
}

.t-stars {
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-size: 0.9em;
}

.t-text {
    font-style: italic;
    color: #ccc;
    font-size: 0.95em;
    margin-bottom: 20px;
}

.t-author {
    font-weight: bold;
    color: white;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
}

.t-verified {
    font-size: 0.7em;
    background: #333;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 10px;
    color: #888;
    text-transform: uppercase;
}

/* FAQ Section */
.faq-section {
    margin: 60px 0;
}

.faq-item {
    background: #151515;
    border-left: 3px solid #333;
    margin-bottom: 20px;
    padding: 25px;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-left-color: var(--primary-gold);
}

.faq-q {
    color: white;
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.faq-a {
    color: #999;
    font-size: 0.95em;
}

/* Bonuses */
.bonus-section {
    margin: 60px 0;
    border: 2px dashed #444;
    background: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
}

.bonus-title {
    text-align: center;
    font-size: 1.8em;
    color: white;
    margin-bottom: 30px;
}

.bonus-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #333;
}

.bonus-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.bonus-tag {
    background: var(--accent-red);
    color: white;
    padding: 2px 8px;
    font-size: 0.8em;
    font-weight: bold;
    border-radius: 4px;
    margin-right: 10px;
    vertical-align: middle;
}

.bonus-h {
    color: var(--primary-gold);
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 5px;
}

.bonus-value {
    color: #666;
    font-size: 0.9em;
}

/* Price Stack */
.price-stack {
    background: #fff;
    color: #000;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    max-width: 600px;
    margin: 60px auto;
    border: 4px solid var(--primary-gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.stack-item {
    display: flex;
    justify-content: space-between;
    font-size: 1.1em;
    padding: 10px 0;
    border-bottom: 1px dashed #ccc;
    font-family: 'Inter', sans-serif;
}

.stack-item strong {
    color: #000;
}

.stack-total {
    font-size: 1.4em;
    font-weight: bold;
    margin: 30px 0 10px 0;
    color: #555;
}

.stack-strike {
    text-decoration: line-through;
    color: #999;
}

.stack-price {
    font-size: 3.5em;
    font-weight: 800;
    color: #d00;
    line-height: 1;
    font-family: 'Inter', sans-serif;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .headline {
        font-size: 2.2em;
    }

    .container {
        padding: 40px 20px;
    }

    .btn-main {
        padding: 20px 30px;
        font-size: 1.1em;
        width: 100%;
    }

    /* New Section Mobile Styles */
    .stack-item {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .price-stack {
        padding: 20px;
    }

    .bonus-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .bonus-card div:first-child {
        margin-right: 0 !important;
        margin-bottom: 15px;
    }
}