/* ═══ HERO ═══ */
.hero {
    min-height: 75vh;
    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: 400px; 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} }

/* ═══ TOOL CARD ═══ */
.tool-card { background: #1e1e1e; border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; padding: 48px; margin-top: 60px; }
.tool-header { display: flex; align-items: flex-start; gap: 24px; margin-bottom: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.tool-icon { width: 56px; height: 56px; background: rgba(249,174,0,0.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--accent-orange); }
.tool-icon svg { width: 28px; height: 28px; }
.tool-meta { flex: 1; }
.tool-meta .tool-cat { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--accent-orange); margin-bottom: 8px; }
.tool-meta h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.tool-meta p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.tool-meta .tool-links { margin-top: 12px; display: flex; gap: 16px; }
.tool-meta .tool-links a { font-size: 13px; color: var(--accent-orange); text-decoration: none; font-weight: 600; }
.tool-meta .tool-links a:hover { text-decoration: underline; }

/* ═══ OS GRID ═══ */
.os-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.os-card { background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 28px 24px; transition: border-color 0.2s; }
.os-card:hover { border-color: rgba(255,255,255,0.13); }
.os-icon { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.os-icon svg { width: 22px; height: 22px; color: var(--text-secondary); flex-shrink: 0; }
.os-name { font-size: 16px; font-weight: 700; }
.os-compat { font-size: 12px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.5; }
.os-downloads { display: flex; flex-direction: column; gap: 8px; }
.download-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: rgba(249,174,0,0.06);
    border: 1px solid rgba(249,174,0,0.15);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-orange);
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}
.download-btn:hover { background: rgba(249,174,0,0.12); border-color: rgba(249,174,0,0.35); }
.download-btn svg { width: 14px; height: 14px; flex-shrink: 0; opacity: 0.7; }
.download-btn .arch { font-size: 11px; font-weight: 500; opacity: 0.6; margin-left: 4px; }
@media (max-width: 900px) { .os-grid { grid-template-columns: 1fr; } .tool-card { padding: 32px 24px; } .tool-header { flex-direction: column; } }

/* ═══ WHY / FAQ CARDS ═══ */
.why-section { background: var(--bg-secondary); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.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 h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

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