/* ═══ 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: 380px; 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)} }

/* ═══ FEATURE CARDS ═══ */
.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(240px, 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; }

/* ═══ PRICING NOTE ═══ */
.pricing-note-box {
    background: rgba(249,174,0,0.05);
    border: 1px solid rgba(249,174,0,0.15);
    border-radius: 12px;
    padding: 20px 28px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.pricing-note-box .note-icon { color: var(--accent-orange); flex-shrink: 0; }
.pricing-note-box .note-icon svg { width: 22px; height: 22px; }
.pricing-note-box p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin: 0; }
.pricing-note-box strong { color: var(--accent-orange); }

/* ═══ 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; }
    .pricing-note-box { flex-direction: column; text-align: 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%; }
}
