:root {
    --bg-dark: #0a0a0a;
    --bg-accent: #111111;
    --primary-gold: #D4AF37;
    --secondary-gold: #C5A028;
    --neon-red: #FF3131;
    --text-main: #e0e0e0;
    --text-dim: #a0a0a0;
    --white: #ffffff;
    --container-width: 1200px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.container-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

section {
    padding: 6rem 0;
}

.bg-dark-accent {
    background-color: var(--bg-accent);
}

.text-center {
    text-align: center;
}

/* Header & Logo */
header {
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary-gold);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: #000;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 30px rgba(212, 175, 55, 0.5);
}

.btn-outline {
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: #000;
}

.btn-large {
    font-size: 1.1rem;
    padding: 1.5rem 3.5rem;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(212, 175, 55, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 1s forwards ease-out;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-image: url('./public/hero-bg.png');
    /* Local generated image */
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.6), rgba(10, 10, 10, 0.95));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

#hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(to right, #fff, var(--primary-gold));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#hero p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: var(--text-dim);
}

#hero p strong {
    color: var(--primary-gold);
}

/* Problem Cards */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.problem-card {
    background: var(--bg-accent);
    padding: 3rem 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 49, 49, 0.1);
    transition: var(--transition);
}

.problem-card:hover {
    border-color: var(--neon-red);
    transform: translateY(-10px);
}

.problem-card .icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1.5rem;
}

.problem-card h3 {
    margin-bottom: 1rem;
    color: var(--neon-red);
}

/* Solution Section */
.solution-header {
    text-align: center;
    margin-bottom: 4rem;
}

.tag {
    background: var(--primary-gold);
    color: #000;
    padding: 0.25rem 1rem;
    font-weight: 800;
    font-size: 0.75rem;
    border-radius: 20px;
}

.price {
    font-size: 5rem;
    font-weight: 900;
    color: var(--primary-gold);
    margin: 1rem 0;
}

.price span {
    font-size: 1rem;
    color: var(--text-dim);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
}

.feature-item .check {
    color: var(--primary-gold);
    font-size: 1.5rem;
    font-weight: bold;
}

.feature-item h4 {
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-dim);
}

/* Guarantee Section */
.guarantee-box {
    background: linear-gradient(135deg, #1a1a1a, #000);
    padding: 4rem;
    border: 2px dashed var(--primary-gold);
    border-radius: 12px;
    text-align: center;
    position: relative;
}

.guarantee-box h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.highlight {
    background: rgba(212, 175, 55, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-size: 1.25rem;
    border-left: 4px solid var(--primary-gold);
}

.risk-zero {
    font-size: 2rem;
    font-weight: 900;
    color: var(--neon-red);
    text-transform: uppercase;
    letter-spacing: 5px;
}

/* Authority Section */
.auth-list {
    list-style: none;
}

.auth-list li {
    margin-bottom: 2rem;
    padding-left: 2rem;
    position: relative;
}

.auth-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
}

.visual-card {
    width: 100%;
    aspect-ratio: 16/9;
    background: #1a1a1a;
    border: 1px solid var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

/* Comparison Table */
.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}

th,
td {
    padding: 2rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

th {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
}

.gold {
    color: var(--primary-gold);
    font-weight: 700;
}

/* Final CTA */
#final-cta {
    background: linear-gradient(to top, #000, #111);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

#final-cta h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

#final-cta p {
    margin-bottom: 3rem;
    color: var(--text-dim);
}

/* Footer */
footer {
    padding: 4rem 0;
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-info h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.footer-info p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.footer-copy {
    color: var(--text-dim);
    font-size: 0.8rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .price {
        font-size: 3.5rem;
    }

    .guarantee-box {
        padding: 2rem;
    }

    #hero {
        height: auto;
        padding: 10rem 0 6rem;
    }
}