:root {
    --primary: #3f0404;
    --accent: #191b78;
    --accent-hover: #2931d9;
    --text-main: #334155;
    --text-light: #64748b;
    --bg-main: #ffffff;
    --bg-light: #f8fafc;
    --border: #e2e8f0;
    --font: 'Inter', system-ui, sans-serif;
}

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

body {
    font-family: var(--font);
    color: var(--text-main);
    background: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
    /* Hide default cursor to use custom one */
    cursor: none; 
}

/* Make sure links also hide default cursor so ours shows */
a, button, input { cursor: none; }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.text-center { text-align: center; }
.section { padding: 6rem 0; }
.bg-light { background: var(--bg-light); }

/* --- Custom Cursor --- */
.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0; left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}
.cursor-dot {
    width: 8px; height: 8px;
    background-color: var(--accent);
}
.cursor-outline {
    width: 30px; height: 30px;
    border: 2px solid rgba(37, 99, 235, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}
/* Hover effect applied via JS */
.cursor-hover .cursor-outline {
    width: 50px; height: 50px;
    background-color: rgba(37, 99, 235, 0.1);
}

/* --- Typography --- */
h1, h2, h3, h4 { color: var(--primary); font-weight: 800; letter-spacing: -0.5px; }
.section-title { font-size: 2.5rem; margin-bottom: 1rem; line-height: 1.2; }
.section-title span { color: var(--accent); }
.section-subtitle { font-size: 1.2rem; color: var(--text-light); max-width: 700px; margin: 0 auto 3rem; }

/* --- Navbar --- */
.navbar { background: var(--bg-main); padding: 1rem 0; border-bottom: 1px solid var(--border); position: fixed; width: 100%; top: 0; z-index: 100; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 800; color: var(--primary); }
nav a { text-decoration: none; color: var(--text-main); font-weight: 600; margin: 0 1rem; transition: color 0.2s; }
nav a:hover { color: var(--accent); }

/* --- Buttons --- */
.btn { display: inline-block; padding: 0.8rem 1.8rem; font-weight: 600; border-radius: 6px; text-decoration: none; transition: all 0.2s; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }

/* --- Hero --- */
.hero { padding: 10rem 0 4rem; text-align: center; }
.hero h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); margin-bottom: 1.5rem; }
.hero p { font-size: 1.2rem; color: var(--text-light); max-width: 700px; margin: 0 auto 2.5rem; }

/* --- Marquee --- */
.marquee-wrapper { width: 100%; overflow: hidden; background: var(--primary); color: #fff; padding: 1rem 0; margin-top: 4rem; display: flex; white-space: nowrap; }
.marquee-content { display: flex; animation: scroll 20s linear infinite; font-weight: 600; font-size: 1.1rem; letter-spacing: 1px; }
.marquee-content span { margin: 0 2rem; color: #fff; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- Grids & Cards --- */
.grid { display: grid; gap: 2rem; }
.problem-grid, .process-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.card { background: var(--bg-main); padding: 2.5rem; border-radius: 8px; border: 1px solid var(--border); text-align: left; }
.icon { font-size: 2.5rem; margin-bottom: 1rem; }
.stat-badge { display: inline-block; background: #fee2e2; color: #991b1b; padding: 0.4rem 1rem; border-radius: 20px; font-weight: 600; font-size: 0.9rem; margin-top: 1rem; }

/* --- Who We Are --- */
.split-grid { grid-template-columns: 1fr 1fr; align-items: center; }
.content-left p { margin-bottom: 1rem; font-size: 1.1rem; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }
.stat-box { background: var(--bg-light); padding: 1.5rem; border-radius: 8px; border: 1px solid var(--border); text-align: center; }
.stat-box h4 { font-size: 2.5rem; color: var(--accent); margin-bottom: 0.5rem; }
.quote-box { font-style: italic; font-size: 1.2rem; border-left: 4px solid var(--accent); padding-left: 1.5rem; color: var(--text-light); }

/* --- Services --- */
.service-block { background: var(--bg-main); padding: 3rem; border-radius: 12px; border: 1px solid var(--border); margin-bottom: 2rem; }
.service-block h3 { font-size: 2rem; margin-bottom: 1rem; }
.service-lead { font-size: 1.2rem; font-weight: 500; color: var(--accent); margin-bottom: 1.5rem; font-style: italic; }
.service-list { list-style: none; margin-bottom: 2rem; }
.service-list li { position: relative; padding-left: 1.5rem; margin-bottom: 0.8rem; }
.service-list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: bold; }
.guarantee-box { background: #eff6ff; border: 1px solid #bfdbfe; padding: 1.5rem; border-radius: 8px; margin-bottom: 2rem; }
.service-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.badge { background: #fef3c7; color: #92400e; padding: 0.5rem 1rem; border-radius: 6px; font-weight: 600; font-size: 0.9rem; }

/* --- Testimonials --- */
.testimonial-grid { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.testimonial-card { background: var(--bg-main); padding: 2.5rem; border-radius: 8px; border: 1px solid var(--border); text-align: left; display: flex; flex-direction: column; justify-content: space-between; }
.testimonial-card.featured { grid-column: 1 / -1; background: var(--primary); color: #fff; border: none; }
.testimonial-card.featured p { color: #f8fafc; font-size: 1.2rem; }
.testimonial-card.featured .author strong { color: #fff; }
.testimonial-card.featured .author span { color: #cbd5e1; }
.stars { color: #fbbf24; font-size: 1.2rem; margin-bottom: 1rem; }
.author { display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; }
.avatar { width: 45px; height: 45px; background: var(--accent); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; }
.author strong { display: block; color: var(--primary); }
.author span { font-size: 0.9rem; color: var(--text-light); }

/* --- Footer --- */
.footer { background: var(--primary); color: #fff; padding: 4rem 0 2rem; }
.footer h2 { color: #fff; }
.footer-content { display: flex; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 2rem; margin-bottom: 2rem; }
.footer .links a { color: #cbd5e1; text-decoration: none; margin-left: 1.5rem; }
.footer .links a:hover { color: #fff; }
.copyright { color: #94a3b8; font-size: 0.9rem; text-align: center; }

@media (max-width: 768px) {
    .split-grid { grid-template-columns: 1fr; }
    .nav-container nav { display: none; } /* Simplified mobile nav for now */
    .cursor-dot, .cursor-outline { display: none; } /* Turn off custom cursor on touch devices */
    body, a, button, input { cursor: auto; }
}