/* ARM FLOW LANDING CSS */
:root {
    --primary: #FF6600;
    --primary-hover: #e65c00;
    --bg-dark: #000000;
    --card-bg: #0A0A0A;
    --card-border: #1A1A1A;
    --text-main: #FFFFFF;
    --text-muted: #888888;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1200px;
    --font-main: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: var(--font-main); -webkit-tap-highlight-color: transparent; }

body { background-color: var(--bg-dark); color: var(--text-main); line-height: 1.6; overflow-x: hidden; font-size: 16px; }

/* UTILS */
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 100px 0; }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-muted); }
.hidden { display: none; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-4 { gap: 1rem; }
.grid { display: grid; }

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 { font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }
p { color: var(--text-muted); margin-bottom: 1.5rem; }

/* COMPONENTS */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.75rem;
    padding: 1.25rem 2.5rem; border-radius: 1rem; font-weight: 700;
    text-decoration: none; transition: var(--transition); cursor: pointer;
    border: none; font-size: 1rem;
}
.btn-primary {
    background: var(--primary); color: white;
    box-shadow: 0 10px 30px -10px rgba(255, 102, 0, 0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -12px rgba(255, 102, 0, 0.6); background: var(--primary-hover); }
.btn-outline {
    background: transparent; border: 1px solid var(--card-border); color: white;
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

.tagline {
    display: inline-block; padding: 0.5rem 1rem; border-radius: 2rem;
    background: rgba(255, 102, 0, 0.1); border: 1px solid rgba(255, 102, 0, 0.2);
    color: var(--primary); font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; margin-bottom: 1.5rem;
}

/* CARDS */
.card {
    background: var(--card-bg); border: 1px solid var(--card-border);
    padding: 2.5rem; border-radius: 1.5rem; transition: var(--transition);
}
.card:hover { border-color: var(--primary); transform: translateY(-5px); }

/* HEADER */
header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
    background: rgba(0,0,0,0.8); backdrop-filter: blur(10px); border-bottom: 1px solid var(--card-border);
    padding: 1.25rem 0;
}
.logo { font-size: 1.5rem; font-weight: 900; color: white; letter-spacing: -1px; text-decoration: none; }
.logo span { color: var(--primary); }

/* HERO */
.hero { padding: 180px 0 100px; text-align: center; }
.hero-content { max-width: 800px; margin: 0 auto; }
.hero-price { font-size: 3.5rem; font-weight: 900; color: var(--primary); margin: 2rem 0; text-shadow: 0 0 50px rgba(255,102,0,0.3); }

/* FEATURES GRID */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.feature-icon {
    width: 60px; height: 60px; background: rgba(255,102,0,0.1); border-radius: 1rem;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.5rem; margin-bottom: 1.5rem;
}

/* STEPS */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; counter-reset: step; }
.step-card { position: relative; overflow: hidden; }
.step-card::before {
    counter-increment: step; content: "0" counter(step);
    position: absolute; top: 1rem; right: 2rem;
    font-size: 5rem; font-weight: 900; color: rgba(255,255,255,0.03);
    line-height: 1;
}

/* FAQ */
.faq-grid { display: grid; gap: 1.5rem; max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 1rem; overflow: hidden; }
.faq-question {
    padding: 1.5rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    font-weight: 700; color: white;
}
.faq-answer {
    padding: 0 1.5rem 1.5rem; color: var(--text-muted); display: none;
    border-top: 1px solid var(--card-border); padding-top: 1.5rem;
}
.faq-item.active .faq-answer { display: block; }
.faq-toggle { transition: var(--transition); }
.faq-item.active .faq-toggle { transform: rotate(180deg); color: var(--primary); }

/* FOOTER */
footer { background: var(--card-bg); padding: 5rem 0 2rem; border-top: 1px solid var(--card-border); margin-top: 5rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; margin-bottom: 3rem; }

/* ANIMATIONS */
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeIn 0.6s ease forwards; }

/* TESTIMONIALS SLIDER */
.testimonials-wrapper {
    position: relative; max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: center;
}
.testimonials-slider {
    width: 100%; overflow: hidden; padding: 2rem 0;
}
.testimonials-track {
    display: flex; gap: 2rem; transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.testimonial-slide {
    min-width: 33.333%; flex: 0 0 33.333%;
    transition: all 0.5s ease;
    opacity: 0.4; transform: scale(0.85); filter: blur(1px);
}
.testimonial-slide.active {
    opacity: 1; transform: scale(1); filter: blur(0); z-index: 2;
}
.testimonial-card {
    background: var(--card-bg); border: 1px solid var(--card-border);
    padding: 2rem; border-radius: 1.5rem; height: 100%;
    display: flex; flex-direction: column; gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.testimonial-slide.active .testimonial-card {
    border-color: var(--primary);
    box-shadow: 0 15px 40px -10px rgba(255, 102, 0, 0.2);
}
.testimonial-header { display: flex; align-items: center; gap: 1rem; }
.user-avatar {
    width: 50px; height: 50px; border-radius: 50%; object-fit: cover;
    background: var(--card-border); border: 2px solid var(--primary);
}
.user-info h4 { margin-bottom: 0.25rem; font-size: 1.1rem; color: white; }
.user-info span { font-size: 0.85rem; color: var(--text-muted); }
.stars { color: #FFD700; margin-bottom: 0.5rem; font-size: 1rem; }
.testimonial-text { color: var(--text-muted); font-style: italic; line-height: 1.6; }

/* NAVIGATION */
.nav-btn {
    background: var(--card-bg); border: 1px solid var(--card-border); color: white;
    width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: var(--transition); z-index: 10; flex-shrink: 0;
}
.nav-btn:hover { background: var(--primary); border-color: var(--primary); }
.prev-btn { margin-right: -25px; }
.next-btn { margin-left: -25px; }

.slider-dots {
    display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem;
}
.dot {
    width: 10px; height: 10px; border-radius: 50%; background: var(--card-border);
    cursor: pointer; transition: var(--transition);
}
.dot.active { background: var(--primary); transform: scale(1.2); }

@media (max-width: 992px) {
    .testimonial-slide { min-width: 50%; flex: 0 0 50%; }
}
@media (max-width: 768px) {
    .testimonial-slide { min-width: 100%; flex: 0 0 100%; opacity: 1; transform: scale(1); filter: none; }
    .nav-btn { position: absolute; top: 50%; transform: translateY(-50%); }
    .prev-btn { left: 0; margin: 0; }
    .next-btn { right: 0; margin: 0; }
    .testimonials-track { gap: 0; }
    .testimonial-card { margin: 0 10px; }
}

/* COMPARISON */
.comparison-container {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    border-radius: 2rem; overflow: hidden; border: 1px solid var(--card-border);
    background: var(--card-bg); margin-top: 3rem;
}
.comparison-col { padding: 3rem; display: flex; flex-direction: column; gap: 2rem; position: relative; }
.col-bad { background: rgba(255, 50, 50, 0.05); border-right: 1px solid var(--card-border); }
.col-good { background: rgba(255, 102, 0, 0.05); }
.comparison-header { text-align: center; margin-bottom: 1rem; }
.comparison-header h3 { font-size: 1.8rem; margin-bottom: 0.5rem; }
.comparison-list { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; }
.comparison-item { display: flex; align-items: flex-start; gap: 1rem; font-size: 1.1rem; }
.icon-box {
    width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 2px;
}
.icon-bad { background: rgba(255, 50, 50, 0.2); color: #ff4d4d; }
.icon-good { background: rgba(255, 102, 0, 0.2); color: var(--primary); }

@media (max-width: 768px) {
    .comparison-container { grid-template-columns: 1fr; }
    .col-bad { border-right: none; border-bottom: 1px solid var(--card-border); }
    .col-bad, .col-good { padding: 2rem; }
}

/* MEDIA QUERIES */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .hero-price { font-size: 2.5rem; }
    .section-padding { padding: 60px 0; }
}
