/* ═══ HERO ═══ */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}
.hero-content-wrapper { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.hero-text { flex: 1; max-width: 580px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(249,174,0,0.08);
    border: 1px solid rgba(249,174,0,0.2);
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-orange);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease;
}
.hero-badge .pulse { width: 8px; height: 8px; background: var(--accent-orange); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }
.hero h1 { font-size: clamp(36px, 5vw, 68px); font-weight: 900; line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 20px; animation: fadeInUp 0.8s ease 0.1s both; }
.hero p { font-size: clamp(15px, 1.8vw, 18px); color: var(--text-secondary); max-width: 520px; line-height: 1.7; margin-bottom: 36px; animation: fadeInUp 0.8s ease 0.2s both; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.3s both; }
.hero-image { flex: 0 0 auto; }
.hero-image img { max-height: 357px; max-width: 100%; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5)); animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@media (max-width: 900px) { .hero-content-wrapper{flex-direction:column} .hero-image{display:none} }

/* ═══ WHY GRID ═══ */
.why-section { background: var(--bg-secondary); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 60px; }
.why-card { background: #1e1e1e; border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 32px 28px; position: relative; overflow: hidden; transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease; }
.why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--accent-orange), transparent 60%); opacity: 0; transition: opacity 0.2s; }
.why-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.13); box-shadow: 0 12px 32px rgba(0,0,0,0.4); }
.why-card:hover::before { opacity: 1; }
.why-card-icon { width: 40px; height: 40px; background: rgba(249,174,0,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--accent-orange); transition: background 0.2s; }
.why-card-icon svg { width: 20px; height: 20px; flex-shrink: 0; }
.why-card:hover .why-card-icon { background: rgba(249,174,0,0.13); }
.why-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ═══ PLANS ═══ */
.plans-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
.plan-card { background: #1e1e1e; border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; padding: 40px 32px; position: relative; transition: transform 0.2s ease, border-color 0.2s ease; display: flex; flex-direction: column; }
.plan-card.featured { border-color: rgba(249,174,0,0.3); box-shadow: 0 0 60px rgba(249,174,0,0.07); }
.plan-card.featured::after { content: 'Más Popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); padding: 4px 20px; background: var(--accent-orange); color: #0f0f0f; font-size: 11px; font-weight: 800; border-radius: 50px; text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; }
.plan-card:hover { transform: translateY(-4px); border-color: rgba(249,174,0,0.2); }
.plan-name { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); margin-bottom: 20px; }
.plan-price { margin-bottom: 6px; }
.plan-price .amount { font-size: 38px; font-weight: 900; color: var(--accent-orange); }
.plan-price .currency { font-size: 14px; color: var(--text-muted); font-weight: 500; }
.plan-price .period { font-size: 14px; color: var(--text-muted); }
.plan-billing { font-size: 12px; color: var(--text-muted); margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.07); line-height: 1.6; }
.plan-features { list-style: none; flex: 1; margin-bottom: 32px; }
.plan-features li { font-size: 14px; color: var(--text-secondary); padding: 9px 0; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.plan-features li:last-child { border-bottom: none; }
.plan-features li.check::before { content: '✓'; color: var(--accent-orange); font-weight: 700; flex-shrink: 0; font-size: 13px; }
.plan-features li.no { color: var(--text-muted); }
.plan-features li.no::before { content: '–'; color: var(--text-muted); flex-shrink: 0; }
@media (max-width: 1024px) { .plans-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; } }

/* ═══ FAQ ═══ */
.faq-list { margin-top: 8px; }

/* ═══ CTA ═══ */
.cta-section { position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(249,174,0,0.06), transparent 60%); }
.cta-box { position: relative; z-index: 2; text-align: center; max-width: 700px; margin: 0 auto; padding: 80px 40px; background: #1e1e1e; border-radius: 20px; border: 1px solid rgba(249,174,0,0.15); }
.cta-box h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 800; margin-bottom: 16px; }
.cta-box p { font-size: 16px; color: var(--text-secondary); margin-bottom: 32px; line-height: 1.7; }

/* ═══ ANIMATIONS ═══ */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(0.4,0,0.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
    .hero-text { max-width: 100%; text-align: center; }
    .hero-actions { justify-content: center; }
}
@media (max-width: 768px) {
    .section { padding: 70px 0; }
    .hero { padding-top: 80px; padding-bottom: 48px; }
}
@media (max-width: 600px) {
    .section { padding: 56px 0; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
}
