:root {
    --bg-dark: #0B0F19;
    --text-light: #F8FAFC;
    --text-muted: #94A3B8;
    --accent-blue: #3B82F6;
    --accent-gold: #F5B942;
    --bg-card: rgba(248, 250, 252, 0.03);
    --border-color: rgba(248, 250, 252, 0.1);
    --font-sans: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-snap-type: y mandatory; }

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Slide Deck Container */
.deck-container {
    width: 100%;
}

/* Individual Slide */
.slide {
    min-height: 100vh;
    width: 100%;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 90px 4rem 4rem 4rem; /* Added top and bottom padding */
}

.container { width: 100%; max-width: 1200px; margin: 0 auto; }
.text-center { text-align: center; }

/* Minimal Nav */
.mini-nav { position: fixed; top: 0; width: 100%; padding: 1.5rem 4rem; display: flex; justify-content: space-between; align-items: center; z-index: 100; pointer-events: auto; background-color: var(--bg-dark); border-bottom: 1px solid var(--border-color); height: 80px; }
.logo { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.5px; text-transform: uppercase; color: var(--text-light); text-decoration: none; pointer-events: auto; }
.nav-cta { pointer-events: auto; }

/* Typography */
h1 { font-size: clamp(3.5rem, 6vw, 6rem); line-height: 1.05; letter-spacing: -0.04em; font-weight: 800; margin-bottom: 1.5rem; color: var(--text-light); }
h2 { font-size: clamp(2.5rem, 4vw, 4rem); line-height: 1.1; letter-spacing: -0.03em; font-weight: 700; margin-bottom: 2rem; }
p.lead { font-size: 1.25rem; color: var(--text-muted); max-width: 600px; line-height: 1.6; font-weight: 400; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 1rem 2.5rem; border-radius: 4px; font-weight: 600; font-size: 1rem; cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); text-decoration: none; border: 1px solid transparent; }
.btn-primary { background: var(--accent-blue); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3); }
.btn-outline { border-color: var(--border-color); color: var(--text-light); background: transparent; }
.btn-outline:hover { border-color: var(--text-light); background: rgba(248, 250, 252, 0.05); }

/* Slide Specific Layouts */
.split-slide { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.centered-slide { display: flex; flex-direction: column; align-items: center; text-align: center; }

/* Cards */
.card { background: var(--bg-card); padding: 3rem; border-radius: 8px; border: 1px solid var(--border-color); }
.pricing-card { display: flex; flex-direction: column; position: relative; }
.pricing-card.popular { border-color: var(--accent-blue); box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1); transform: scale(1.05); z-index: 10; }
.popular-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent-blue); color: #fff; padding: 4px 16px; border-radius: 20px; font-size: 0.75rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }

/* Lists & Points */
ul.clean-list { list-style: none; }
ul.clean-list li { font-size: 1.25rem; margin-bottom: 1rem; color: var(--text-muted); display: flex; align-items: center; gap: 1rem; }
ul.clean-list li::before { content: '→'; color: var(--accent-blue); }

ul.feature-list { list-style: none; margin-bottom: 2rem; flex-grow: 1; }
ul.feature-list li { margin-bottom: 1rem; color: var(--text-muted); font-size: 0.95rem; display: flex; align-items: center; gap: 0.75rem; }
ul.feature-list li::before { content: '•'; color: var(--accent-blue); }

/* Process Timeline */
.process-steps { display: flex; flex-direction: column; gap: 2rem; border-left: 2px solid var(--border-color); padding-left: 2rem; }
.process-step { position: relative; }
.process-step::before { content: ''; position: absolute; left: -2.35rem; top: 0.5rem; width: 12px; height: 12px; background: var(--accent-blue); border-radius: 50%; }
.process-step h3 { font-size: 1.5rem; color: var(--text-light); }

/* Animations inside slides */
.slide .animate { opacity: 0; transform: translateY(30px) scale(0.95); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.slide.is-visible .animate { opacity: 1; transform: translateY(0) scale(1); }
.slide.is-visible .delay-1 { transition-delay: 0.1s; }
.slide.is-visible .delay-2 { transition-delay: 0.2s; }
.slide.is-visible .delay-3 { transition-delay: 0.3s; }

/* Forms */
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; color: var(--text-muted); font-size: 0.9rem; }
.form-control { width: 100%; padding: 1rem; background: rgba(0,0,0,0.2); border: 1px solid var(--border-color); color: white; border-radius: 4px; font-family: inherit; font-size: 1rem; }
.form-control:focus { outline: none; border-color: var(--accent-blue); }

/* Footer */
.site-footer {
    background-color: #11141D;
    padding: 6rem 2rem;
    text-align: center;
    scroll-snap-align: end;
}
.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text-light);
    letter-spacing: -0.5px;
    text-transform: uppercase;
}
.footer-contact {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}
.footer-contact a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-contact a:hover {
    color: var(--text-light);
}
.footer-address {
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}
.footer-copyright {
    color: rgba(148, 163, 184, 0.4);
    font-size: 0.9rem;
}
/* Testimonials Marquee */
.testimonials-marquee {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%); /* Full bleed */
    padding: 1rem 0;
}
.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
    gap: 1.5rem;
}
.marquee-track.reverse {
    animation-direction: reverse;
}
.marquee-track:hover {
    animation-play-state: paused;
}
.marquee-track .card {
    width: 450px;
    flex-shrink: 0;
    white-space: normal;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 0.75rem)); }
}

@media (max-width: 768px) {
    .split-slide { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .slide { padding: 0 2rem; }
    .pricing-card.popular { transform: none; }
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .process-steps { border-left: none; padding-left: 0; text-align: center; }
    .process-step::before { display: none; }
    .mini-nav { padding: 1.5rem 2rem; }
}
