/* =========================================================
   REVERT PIXELS - HONEST & ENGAGING STYLESHEET (v1.0.4)
   ========================================================= */

:root {
    --primary: #FFA500;
    --primary-hover: #e69500;
    --primary-soft: rgba(255, 165, 0, 0.1);
    --bg-main: #050505;
    --bg-secondary: #0a0a0c;
    --bg-card: #121214;
    --bg-elevated: #1a1a1d;
    --text-main: #FFFFFF;
    --text-muted: #A1A1AA;
    --text-dim: #71717a;
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 165, 0, 0.3);
    --transition: all 0.3s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

html { scroll-behavior: smooth; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-muted); }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 10px 20px; border-radius: 8px; font-weight: 500; font-size: 15px;
    text-decoration: none; transition: var(--transition); border: 1px solid transparent;
    cursor: pointer; white-space: nowrap;
}
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-primary { background: var(--primary); color: #000; font-weight: 600; }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,165,0,0.25); }
.btn-outline { background: transparent; color: var(--text-main); border-color: var(--border); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: rgba(255,165,0,0.05); }

/* Section Label */
.section-label {
    display: inline-block; font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--primary); margin-bottom: 16px; font-weight: 600;
    padding: 4px 12px; background: var(--primary-soft); border-radius: 4px;
}

/* Navigation */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background: rgba(5, 5, 5, 0.85); backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent; transition: var(--transition);
    padding: 16px 0;
}
.navbar.scrolled { border-bottom-color: var(--border); padding: 12px 0; }
.nav-container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo img { height: 32px; display: block; }
.nav-menu { display: flex; gap: 28px; flex: 1; justify-content: center; }
.nav-link { color: var(--text-muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: var(--transition); }
.nav-link:hover { color: var(--text-main); }
.mobile-menu-btn { display: none; background: none; border: none; color: var(--text-main); cursor: pointer; }

.mobile-drawer {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg-secondary); border-bottom: 1px solid var(--border);
    padding: 20px 24px; flex-direction: column; gap: 12px;
}
.mobile-drawer.active { display: flex; }
.mobile-drawer a { color: var(--text-main); text-decoration: none; padding: 8px 0; font-size: 15px; }

/* Hero Section */
.hero {
    position: relative; padding: 160px 0 80px; min-height: 90vh;
    display: flex; align-items: center; justify-content: center; text-align: center;
}
.hero-bg-glow {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 90%; max-width: 900px; height: 600px;
    background: radial-gradient(circle, rgba(255,165,0,0.1) 0%, transparent 60%);
    z-index: -1; pointer-events: none;
}
.hero-content { max-width: 900px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px;
    background: var(--primary-soft); border: 1px solid rgba(255,165,0,0.2);
    border-radius: 20px; font-size: 13px; color: var(--primary); margin-bottom: 32px; font-weight: 500;
}
.pulse-dot { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; box-shadow: 0 0 12px var(--primary); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-title { font-size: clamp(32px, 5vw, 60px); font-weight: 800; line-height: 1.15; margin-bottom: 24px; letter-spacing: -0.02em; }
.type-wrap { display: inline-block; min-width: 280px; text-align: left; }
.cursor { animation: blink 1s step-end infinite; font-weight: 300; }
@keyframes blink { 50% { opacity: 0; } }

.hero-desc { font-size: clamp(15px, 2vw, 18px); color: var(--text-muted); max-width: 720px; margin: 0 auto 40px; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }

.hero-trust { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; padding-top: 40px; border-top: 1px solid var(--border); }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.trust-item strong { font-size: 24px; color: var(--primary); font-weight: 700; }
.trust-item span { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* Section Header */
.section-header { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-header h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 700; margin-bottom: 16px; letter-spacing: -0.02em; line-height: 1.2; }
.section-header p { font-size: 17px; color: var(--text-muted); line-height: 1.7; }

/* Services Section */
.services-section { padding: 100px 0; background: var(--bg-secondary); border-top: 1px solid var(--border); }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.feature-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px;
    padding: 32px; transition: var(--transition);
}
.feature-card:hover { transform: translateY(-4px); border-color: var(--border-hover); background: var(--bg-elevated); }
.icon-wrapper {
    width: 48px; height: 48px; background: var(--primary-soft); border-radius: 12px;
    display: flex; align-items: center; justify-content: center; color: var(--primary); margin-bottom: 20px;
}
.feature-card h3 { font-size: 20px; margin-bottom: 12px; font-weight: 600; }
.feature-card p { color: var(--text-muted); font-size: 15px; line-height: 1.6; margin-bottom: 16px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.feature-list li { font-size: 14px; color: var(--text-dim); padding-left: 20px; position: relative; }
.feature-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }

/* Tech Section */
.tech-section { padding: 100px 0; }
.tech-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.tech-item {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px;
    padding: 32px 24px; text-align: center; transition: var(--transition);
}
.tech-item:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.tech-icon {
    width: 64px; height: 64px; margin: 0 auto 20px;
    background: var(--primary-soft); border: 1px solid rgba(255,165,0,0.2);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-weight: 800; font-size: 16px; letter-spacing: 1px;
}
.tech-item h4 { font-size: 17px; margin-bottom: 8px; font-weight: 600; }
.tech-item p { font-size: 14px; color: var(--text-muted); }
.tech-note { text-align: center; margin-top: 40px; color: var(--text-dim); font-size: 14px; }

/* Process Section */
.process-section { padding: 100px 0; background: var(--bg-secondary); border-top: 1px solid var(--border); }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.process-step {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px;
    padding: 32px; transition: var(--transition); position: relative;
}
.process-step:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.step-number {
    font-size: 48px; font-weight: 800; color: var(--primary);
    opacity: 0.3; margin-bottom: 12px; line-height: 1;
}
.process-step h3 { font-size: 20px; margin-bottom: 12px; font-weight: 600; }
.process-step p { color: var(--text-muted); font-size: 15px; line-height: 1.6; }

/* About Section */
.about-section { padding: 120px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center; }
.about-image-wrapper { position: relative; }
.about-img {
    width: 100%; height: auto; display: block; border-radius: 20px;
    border: 1px solid var(--border); filter: grayscale(10%);
}
.experience-badge {
    position: absolute; bottom: -20px; right: -20px; background: var(--bg-card);
    border: 1px solid var(--border-hover); padding: 20px; border-radius: 16px;
    display: flex; align-items: center; gap: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.experience-badge .number { font-size: 28px; font-weight: 800; color: var(--primary); }
.experience-badge .text { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); line-height: 1.4; }

.about-content h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 20px; margin-top: 8px; }
.about-content p { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.about-content strong { color: var(--text-main); font-weight: 600; }
.trust-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.trust-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 500; color: var(--text-main); }
.trust-list svg { width: 20px; height: 20px; flex-shrink: 0; }

/* Why Section */
.why-section { padding: 100px 0; background: var(--bg-secondary); border-top: 1px solid var(--border); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.why-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px;
    padding: 32px; transition: var(--transition);
}
.why-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.why-card h3 { font-size: 19px; margin-bottom: 12px; font-weight: 600; color: var(--primary); }
.why-card p { color: var(--text-muted); font-size: 15px; line-height: 1.6; }

/* Coverage Section */
.coverage-section { padding: 60px 0; border-top: 1px solid var(--border); text-align: center; }
.coverage-title { font-size: 14px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 24px; font-weight: 600; }
.coverage-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 20px; }
.coverage-tags span {
    padding: 8px 16px; background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 8px; font-size: 14px; color: var(--text-muted); transition: var(--transition);
}
.coverage-tags span:hover { border-color: var(--primary); color: var(--primary); }
.coverage-note { font-size: 13px; color: var(--text-dim); margin-top: 16px; }

/* FAQ Section */
.faq-section { padding: 100px 0; background: var(--bg-secondary); border-top: 1px solid var(--border); }
.faq-container { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: var(--transition); }
.faq-item.active { border-color: var(--border-hover); }
.faq-question {
    width: 100%; padding: 20px 24px; background: none; border: none; color: var(--text-main);
    font-size: 16px; font-weight: 500; text-align: left; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    font-family: inherit;
}
.faq-icon { font-size: 24px; color: var(--primary); transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding: 0 24px 20px; color: var(--text-muted); font-size: 15px; line-height: 1.7; }
.faq-item.active .faq-answer { max-height: 300px; }

/* CTA Section */
.cta-section { padding: 120px 0; }
.cta-box {
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-main) 100%);
    border: 1px solid var(--border); border-radius: 24px; padding: 64px 32px;
    text-align: center; max-width: 800px; margin: 0 auto; position: relative; overflow: hidden;
}
.cta-box::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.cta-box h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 700; margin: 16px 0; letter-spacing: -0.02em; }
.cta-box p { font-size: 17px; color: var(--text-muted); margin-bottom: 40px; max-width: 600px; margin-inline: auto; line-height: 1.7; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.cta-note { font-size: 14px; color: var(--text-dim); margin-top: 20px !important; }

/* Footer */
footer { padding: 60px 0 30px; border-top: 1px solid var(--border); background: var(--bg-secondary); }
.footer-container { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-left p { color: var(--text-muted); font-size: 14px; margin: 16px 0; line-height: 1.6; }
.footer-logo { height: 32px; }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.footer-socials a {
    display: flex; align-items: center; justify-content: center; width: 36px; height: 36px;
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 50%;
    color: var(--text-muted); transition: var(--transition);
}
.footer-socials a:hover { background: var(--primary); color: #000; border-color: var(--primary); transform: translateY(-2px); }

.footer-col h4 { font-size: 15px; margin-bottom: 16px; font-weight: 600; }
.footer-col a, .footer-col p { display: block; color: var(--text-muted); text-decoration: none; font-size: 14px; margin-bottom: 10px; transition: var(--transition); }
.footer-col a:hover { color: var(--primary); }

.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid var(--border); font-size: 14px; color: var(--text-muted); }

/* Animations */
.reveal { opacity: 0; transform: translateY(20px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* Mobile Responsive */
@media (max-width: 968px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .experience-badge { right: 20px; bottom: 20px; }
    .footer-container { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .nav-menu, .nav-cta { display: none; }
    .mobile-menu-btn { display: block; }
    .hero { padding: 120px 0 60px; }
    .type-wrap { display: block; min-width: auto; text-align: center; }
    .hero-actions, .cta-buttons { flex-direction: column; width: 100%; }
    .btn-lg { width: 100%; }
    .hero-trust { gap: 24px; }
    .trust-item strong { font-size: 20px; }
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .footer-socials { justify-content: center; }
    .cta-box { padding: 40px 24px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-trust { gap: 20px; }
    .experience-badge { padding: 12px; right: 12px; bottom: 12px; }
    .experience-badge .number { font-size: 20px; }
}