:root {
    --bg-dark: #001333;
    --bg-indigo: #002e8c; /* Royal Blue Deep */
    --primary: #00d4ff; /* Electric Light Blue */
    --accent: #b4ff00;  /* Intense Neon Lime */
    --text-white: #ffffff;
    --text-muted: #cbd5e1;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.15);
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --shadow-glow: 0 0 25px rgba(0, 212, 255, 0.35);
    --shadow-cta: 0 0 35px rgba(180, 255, 0, 0.45);
}

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

body {
    font-family: var(--font-main);
    background: radial-gradient(circle at top, var(--bg-indigo), var(--bg-dark));
    color: var(--text-white);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 1.2rem; /* Aumentamos el tamaño base */
}

.container {
    max-width: 1200px; /* Un poco más amplio para letras grandes */
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1 {
    font-size: 4.5rem; /* Headline masivo */
}

h2 {
    font-size: 3.5rem;
}

h3 {
    font-size: 2.2rem;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    line-height: 1.05;
    margin-bottom: 25px;
}

.neon-text {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

.gradient-text {
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    text-decoration: none;
    font-size: 1.1rem;
    text-align: center;
}

.btn-neon {
    background: var(--accent);
    color: #000;
    box-shadow: var(--shadow-cta);
}

.btn-neon:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 40px rgba(132, 204, 22, 0.6);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    margin-top: 15px;
}

/* Sections */
section {
    padding: 100px 0;
}

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 120px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-image {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
}

.eyebrow {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

/* Cards */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 24px;
    transition: all 0.3s ease;
}

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

/* Identification Section */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* Method Section */
.bonus-grid .glass-card img {
    width: 60%; /* Reducimos al ~50-60% como pidió el usuario */
    margin: 0 auto 15px;
    display: block;
    border-radius: 12px;
}

.phase-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.phase-num {
    background: var(--primary);
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

/* Bonus Section */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.bonus-grid .glass-card {
    padding: 25px;
}

.bonus-grid h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.bonus-tag {
    background: rgba(132, 204, 22, 0.1);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
}

/* Pricing Value Stack */
.value-stack {
    text-align: left;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
}

.value-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.value-item:last-child {
    border-bottom: none;
}

.value-name {
    font-size: 1rem;
    color: var(--text-white);
}

.value-price {
    font-weight: 700;
    color: var(--primary);
}

.total-real {
    font-size: 1.4rem;
    color: #ef4444;
    text-decoration: line-through;
    opacity: 0.7;
    margin-top: 20px;
}

.price-offer {
    font-size: 4.5rem;
    font-family: var(--font-heading);
    color: var(--accent);
    text-shadow: 0 0 20px rgba(180, 255, 0, 0.5);
    margin: 10px 0;
}

.offer-description {
    font-size: 1.1rem;
    color: var(--text-white);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 25px;
}

.security-badge {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    font-size: 0.85rem;
    opacity: 0.6;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-grid, .method-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-grid { flex-direction: column-reverse; }
    .pain-grid, .bonus-grid { grid-template-columns: 1fr; }
    .hero { text-align: center; }
    .phase-item { text-align: left; }
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
}
