:root {
    --primary: #0f172a;
    --primary-deep: #0c1222;
    --accent: #b8922e;
    --accent-light: #d4a736;
    --accent-glow: rgba(184, 146, 46, 0.4);
    --glass: rgba(255, 255, 255, 0.05);
    --text: #f8fafc;
    --text-muted: #cbd5e1;
    --border: rgba(255, 255, 255, 0.1);
    --transition: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* Both html and body need this - mobile browsers (esp. iOS Safari) ignore it on body alone,
       and the reveal animations translate elements 50px past the viewport edge */
    overflow-x: hidden;
    overflow-x: clip;
}

body {
    font-family: 'Assistant', sans-serif;
    background-color: var(--primary);
    color: var(--text);
    overflow-x: hidden;
    overflow-x: clip;
    max-width: 100%;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

/* ==================== SCROLL PROGRESS BAR ==================== */
.scroll-progress {
    position: fixed;
    top: 0;
    right: 0;
    height: 4px;
    width: 0%;
    background: linear-gradient(to left, var(--accent), var(--accent-light));
    z-index: 2000;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px var(--accent-glow);
}

/* ==================== REVEAL ANIMATIONS ==================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-right {
    transform: translateX(-50px);
}

.reveal-left {
    transform: translateX(50px);
}

.reveal-right.visible,
.reveal-left.visible {
    transform: translateX(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ==================== FLOATING BUTTONS ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    z-index: 1001;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: transform var(--transition), box-shadow var(--transition);
    animation: pulse 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
    0% { box-shadow: 0 4px 15px rgba(0,0,0,0.5), 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 4px 15px rgba(0,0,0,0.5), 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 4px 15px rgba(0,0,0,0.5), 0 0 0 0 rgba(37, 211, 102, 0); }
}

.scroll-top {
    position: fixed;
    bottom: 25px;
    left: 95px;
    background: var(--accent);
    color: #fff;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
}

/* ==================== CTA BUTTONS ==================== */
.cta-btn {
    background: var(--accent);
    color: white;
    padding: 20px 50px;
    border: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition);
    font-family: 'Assistant', sans-serif;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: right 0.6s ease;
}

.cta-btn:hover::before {
    right: 100%;
}

.cta-btn:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.cta-btn i {
    transition: transform var(--transition);
}

.cta-btn:hover i {
    transform: translateX(-5px);
}

.cta-secondary {
    margin-top: 40px;
}

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(to left, rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.96)),
                url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2072&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 5% 40px;
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    opacity: 0.3;
    pointer-events: none;
    animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.2; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.4; transform: translateX(-50%) scale(1.15); }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero h1 {
    font-size: clamp(3.5rem, 10vw, 6.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--accent);
    display: inline-block;
}

.hero h2 {
    font-size: clamp(1.2rem, 4vw, 2.2rem);
    font-weight: 300;
    margin: 25px 0 40px;
    color: var(--text-muted);
    max-width: 900px;
    line-height: 1.4;
}

.stats-wrapper {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 50px;
}

.stat-box {
    background: var(--glass);
    border: 1px solid rgba(184, 146, 46, 0.3);
    padding: 20px 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform var(--transition), border-color var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.scroll-hint {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    opacity: 0.7;
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ==================== HERO PARTICLE CANVAS ==================== */
.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

#confettiCanvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3000;
}

/* ==================== SUMMIT PATH (12 STATIONS CLIMB) ==================== */
.summit-path {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    padding: 0;
}

.path-track {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 29px;
    width: 4px;
    background: rgba(184, 146, 46, 0.15);
    border-radius: 4px;
}

.path-fill {
    position: absolute;
    top: 0;
    right: 29px;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--accent-light), var(--accent));
    border-radius: 4px;
    box-shadow: 0 0 14px var(--accent-glow);
    transition: height 0.12s linear;
    z-index: 1;
}

.path-climber {
    position: absolute;
    bottom: -9px;
    left: -7px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent-light);
    box-shadow: 0 0 18px 4px var(--accent-glow);
    animation: climberPulse 1.4s ease-in-out infinite;
}

@keyframes climberPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.station {
    position: relative;
    padding: 0 70px 0 0;
    margin-bottom: 24px;
    text-align: right;
}

.station-node {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-deep);
    border: 2px solid rgba(184, 146, 46, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: var(--accent);
    z-index: 2;
    transition: all 0.4s ease;
}

.station-node.reached {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent-light);
    box-shadow: 0 0 22px var(--accent-glow);
    transform: scale(1.12);
}

.station-card {
    background: var(--glass);
    border: 1px solid rgba(184, 146, 46, 0.2);
    border-radius: 14px;
    padding: 22px 24px;
    transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.station.reached .station-card {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.station-card:hover {
    transform: translateX(-8px);
    border-color: var(--accent);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.4);
}

.station-title {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.station-desc {
    font-size: 1.05rem;
    line-height: 1.55;
    opacity: 0.9;
    margin: 0;
}

.summit-peak {
    position: relative;
    padding: 4px 70px 0 0;
    text-align: right;
    min-height: 54px;
    display: flex;
    align-items: center;
}

.peak-icon {
    position: absolute;
    right: 4px;
    top: 0;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 0 26px var(--accent-glow);
    animation: climberPulse 1.8s ease-in-out infinite;
}

.peak-label {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
}

/* ==================== UPDATE SECTION ==================== */
.update-section {
    padding: 80px 10%;
    background: var(--primary-deep);
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.update-header h2 {
    color: var(--accent);
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 10px;
}

.update-header p {
    opacity: 0.6;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.bugs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.bug-item {
    background: var(--glass);
    border-right: 4px solid var(--accent);
    padding: 25px;
    text-align: right;
    border-radius: 10px;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.bug-item:hover {
    transform: translateY(-8px);
    background: rgba(184, 146, 46, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.bug-title {
    display: block;
    color: var(--accent);
    font-weight: 800;
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.bug-title i {
    margin-left: 6px;
}

.update-cta {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.4;
    max-width: 850px;
    margin: 0 auto;
}

/* ==================== STORY SECTION ==================== */
.story-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    padding: 80px 10%;
    align-items: center;
    background: var(--primary);
}

.portrait-frame {
    border: 2px solid var(--accent);
    border-radius: 30px;
    padding: 12px;
    overflow: hidden;
    position: relative;
    max-width: 440px;
    justify-self: center;
    width: 100%;
}

.portrait-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    box-shadow: inset 0 0 60px rgba(184, 146, 46, 0.15);
    pointer-events: none;
}

.portrait-frame img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    transition: transform 0.6s ease;
}

.portrait-frame:hover img {
    transform: scale(1.03);
}

.story-text h2 {
    font-size: clamp(2.2rem, 6vw, 3.2rem);
    margin-bottom: 10px;
    color: var(--accent);
}

.story-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 20px;
}

.story-text p {
    font-size: 1.2rem;
    opacity: 0.95;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

/* ==================== STEPS SECTION ==================== */
.steps-container {
    padding: 80px 10%;
    background: var(--primary-deep);
    text-align: center;
}

.steps-header h2 {
    font-size: clamp(2.2rem, 6vw, 3rem);
    color: var(--accent);
    margin-bottom: 15px;
}

.steps-header p {
    font-size: 1.2rem;
    opacity: 0.7;
    margin-bottom: 45px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.step-card {
    background: var(--glass);
    border: 1px solid rgba(184, 146, 46, 0.2);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: right;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.step-num {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(184, 146, 46, 0.12);
    line-height: 1;
    transition: color var(--transition);
}

.step-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.step-card:hover .step-num {
    color: rgba(184, 146, 46, 0.25);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.step-desc {
    font-size: 1.1rem;
    line-height: 1.5;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* ==================== BRANDS CAROUSEL ==================== */
.brands-carousel {
    background: #000;
    padding: 60px 0;
    overflow: hidden;
    border-top: 1px solid var(--border);
    position: relative;
}

.brands-fade-right,
.brands-fade-left {
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.brands-fade-right {
    right: 0;
    background: linear-gradient(to left, #000, transparent);
}

.brands-fade-left {
    left: 0;
    background: linear-gradient(to right, #000, transparent);
}

.brands-track {
    display: flex;
    width: max-content;
    animation: scrollBrands 35s linear infinite;
    gap: 80px;
    align-items: center;
}

.brand-logo {
    font-weight: 800;
    font-size: 1.6rem;
    color: #fff;
    opacity: 0.35;
    white-space: nowrap;
    transition: opacity var(--transition);
}

.brand-logo:hover {
    opacity: 0.7;
}

@keyframes scrollBrands {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==================== GAUGE SECTION ==================== */
.gauge-section {
    padding: 80px 10%;
    text-align: center;
    background: var(--primary-deep);
}

.gauge-section h2 {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 40px;
}

.gauge-container {
    width: 280px;
    height: 140px;
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
    border-radius: 140px 140px 0 0;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 2px solid var(--accent);
}

.gauge-needle {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 4px;
    height: 120px;
    background: var(--accent);
    transform-origin: bottom;
    animation: moveNeedle 3s infinite alternate ease-in-out;
    box-shadow: 0 0 12px var(--accent);
}

@keyframes moveNeedle {
    0% { transform: translateX(-50%) rotate(-65deg); }
    100% { transform: translateX(-50%) rotate(65deg); }
}

.gauge-labels {
    display: flex;
    justify-content: space-between;
    max-width: 450px;
    margin: 0 auto;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-muted);
}

.gauge-highlight {
    color: var(--accent);
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    padding: 80px 10%;
    background: var(--primary);
    max-width: 900px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: clamp(2rem, 6vw, 3rem);
    color: var(--accent);
    margin-bottom: 15px;
}

.faq-header p {
    font-size: 1.2rem;
    opacity: 0.7;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item:hover {
    border-color: rgba(184, 146, 46, 0.3);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Assistant', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    text-align: right;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    color: var(--accent);
    font-size: 1rem;
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-right: 15px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
    padding: 0 30px 25px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ==================== CONTACT SECTION ==================== */
.contact-area {
    padding: 80px 10%;
    background: #000;
    text-align: center;
}

.form-container {
    max-width: 650px;
    margin: 0 auto;
}

.contact-logo {
    margin-bottom: 30px;
}

.contact-logo img {
    max-width: 300px;
    width: 100%;
    height: auto;
}

.contact-area h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--accent);
}

.contact-subtitle {
    font-size: 1.15rem;
    opacity: 0.7;
    margin-bottom: 35px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: #111;
    color: #fff;
    font-family: 'Assistant', sans-serif;
    font-size: 1.1rem;
    width: 100%;
    transition: border-color var(--transition), box-shadow var(--transition);
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(184, 146, 46, 0.15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.submit-btn {
    width: 100%;
}

.privacy-note {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-top: 5px;
}

.privacy-note a {
    color: var(--accent);
}

.privacy-note a:hover {
    text-decoration: underline;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    display: none;
    font-weight: 700;
}

/* ==================== FOOTER ==================== */
footer {
    padding: 40px;
    text-align: center;
    background: #000;
    border-top: 1px solid var(--border);
}

.footer-contact {
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-contact a {
    color: var(--accent);
}

.footer-contact a:hover {
    color: var(--accent-light);
}

.footer-legal {
    font-size: 0.8rem;
    opacity: 0.4;
}

.footer-legal a {
    color: inherit;
    margin: 0 5px;
}

.footer-legal a:hover {
    color: var(--accent);
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 768px) {
    .hero { padding: 60px 5% 30px; }

    .path-track, .path-fill { right: 21px; }
    .station { padding-right: 58px; }
    .station-node { width: 36px; height: 36px; right: 4px; font-size: 0.9rem; }
    .summit-peak { padding-right: 58px; }
    .peak-icon { width: 46px; height: 46px; right: 0; }
    .station-title { font-size: 1.25rem; }

    .story-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 60px 5%;
    }

    .stat-box { min-width: 85%; }

    .bug-item {
        border-right: none;
        border-bottom: 4px solid var(--accent);
        text-align: center;
    }

    .step-card { text-align: center; }
    .step-num { left: 50%; transform: translateX(-50%); }

    .gauge-labels {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .faq-question { font-size: 1.1rem; padding: 20px; }
    .faq-answer p { padding: 0 20px 20px; }

    .update-section,
    .steps-container,
    .gauge-section,
    .contact-area,
    .faq-section {
        padding: 60px 5%;
    }

    .footer-contact { flex-direction: column; gap: 10px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.8rem; }
    .hero h2 { font-size: 1.1rem; }

    .stats-wrapper { flex-direction: column; gap: 12px; }
    .stat-box { min-width: 90%; padding: 15px 30px; }
    .stat-number { font-size: 2rem; }

    .cta-btn { padding: 16px 35px; font-size: 1.05rem; width: 100%; }

    .contact-area h2 { font-size: 1.8rem; }
    .contact-form input,
    .contact-form textarea { font-size: 16px; }

    footer { padding: 30px 20px; }
    .scroll-top { left: 85px; width: 45px; height: 45px; }
}

/* ==================== ACCESSIBILITY ==================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
    .hero { background-attachment: scroll; }
}

.cta-btn:focus-visible,
.contact-form input:focus-visible,
.contact-form textarea:focus-visible,
.faq-question:focus-visible,
a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

@media (prefers-contrast: more) {
    :root { --accent: #e6c200; }
    .stat-box, .bug-item, .step-card { border-width: 2px; }
}
