:root {
    --primary: #fa1e4e;
    --primary-hover: #d01941;
    --bg-dark: #0f0f0f;
    --bg-card: #1a1a1a;
    --text-main: #ffffff;
    --text-gray: #999999;
    --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: system-ui, -apple-system, sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

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

/* Header */
.top-bar {
    position: sticky;
    top: 0;
    width: 100%;
    height: 64px;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    height: 32px;
}

/* Hero Section */
.hero {
    min-height: 70vh; /* Reduced from 90vh to force content up */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 20px; /* Reduced from 64px */
    padding-bottom: 20px;
}

.headline {
    font-size: 1.62rem; /* Reduced by 10% from 1.8rem */
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 12px; /* Reduced from 20px */
    text-transform: uppercase;
    /* Halo Effect for Headline */
    text-shadow: 0 0 15px rgba(250, 30, 78, 0.6);
}

@media (min-width: 768px) {
    .headline { font-size: 2.88rem; /* Reduced by 10% from 3.2rem */ }
}

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

.brand-color {
    color: var(--primary);
}

.subheadline {
    color: var(--text-gray);
    font-size: 1.2rem; /* Increased by 20% from 1rem */
    max-width: 700px;
    margin: 0 auto 15px; /* Reduced from 30px */
}

.hero-media {
    position: relative;
    width: 100%;
    max-width: 900px;
    max-height: 180px; /* Reduced from 250px for mobile fold */
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
    .hero-media { max-height: 320px; } /* Reduced from 400px for desktop fold */
}

.hero-img {
    width: 100%;
    height: 180px; /* Reduced from 250px */
    object-fit: cover;
    display: block;
}

@media (min-width: 768px) {
    .hero-img { height: 320px; } /* Reduced from 400px */
}

.cta-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 15px; /* Slightly tighter padding */
    display: flex;
    justify-content: center;
}

/* Buttons */
.cta-button {
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px;
    display: inline-block;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    /* Halo Effect for Buttons */
    box-shadow: 0 0 15px rgba(250, 30, 78, 0.4);
}

.cta-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    /* Stronger Halo Effect on Hover */
    box-shadow: 0 0 25px rgba(250, 30, 78, 0.7);
}

.hero-cta, .final-btn {
    width: 100%;
    max-width: 400px;
}

/* Social Proof */
.social-proof {
    background-color: var(--bg-card);
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.proof-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
}

@media (min-width: 768px) {
    .proof-grid { grid-template-columns: repeat(3, 1fr); }
}

.proof-item strong {
    display: block;
    font-size: 1.5rem;
    color: var(--text-main);
}

.proof-item span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.trusted {
    font-style: italic;
}

/* Discovery Cards */
.discovery {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.05);
}

@media (min-width: 768px) {
    .card { flex-direction: row; align-items: stretch; }
    .card-alt { flex-direction: row-reverse; }
    .card-img, .card-content { width: 50%; }
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-label {
    color: var(--primary);
    font-weight: 900;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.section-cta-container {
    text-align: center;
    margin-top: 40px;
}

/* Comparison Section */
.why-gx {
    padding: 80px 0;
    background-color: #050505;
}

.section-desc {
    text-align: center;
    max-width: 700px;
    margin: -40px auto 60px;
    color: var(--text-gray);
    font-size: 1.2rem;
}

.table-wrapper {
    overflow-x: auto;
    margin-bottom: 20px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th, .comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.comparison-table th {
    background: rgba(255,255,255,0.05);
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--text-gray);
}

.comparison-table th.active, .comparison-table td.active {
    color: var(--primary);
    font-weight: 700;
}

.disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: #444;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card cite {
    font-weight: 700;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* FAQ */
.faq {
    padding: 80px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

details {
    background: var(--bg-card);
    margin-bottom: 15px;
    border-radius: 8px;
    padding: 10px 20px;
}

summary {
    font-weight: 700;
    cursor: pointer;
    padding: 10px 0;
}

details p {
    padding: 10px 0 20px;
    color: var(--text-gray);
}

/* Final CTA */
.final-cta {
    padding: 100px 0 160px;
    text-align: center;
}

/* Footer */
footer {
    padding: 60px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

.sep {
    margin: 0 10px;
    color: #333;
}

.affiliate-disclaimer {
    margin-top: 20px;
    font-size: 0.75rem;
    color: #444;
}

/* Sticky Bar */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 15px 0;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2000;
}

.sticky-bar.visible {
    transform: translateY(0);
}

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

.sticky-text {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.sticky-btn {
    background: white;
    color: var(--primary);
    padding: 10px 20px;
    font-size: 0.8rem;
}

.sticky-btn:hover {
    background: #eee;
    color: var(--primary);
    transform: none;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5); /* Special hover glow for sticky white button */
}