:root {
    --bg-dark: #080C14;
    --text-light: #F3F4F6;
    --text-muted: #9CA3AF;
    --primary-slate-blue: #7093B0;
    --primary-light-blue: #96C7E2;
    --card-bg: rgba(15, 22, 35, 1); /* solidified for precise readability */
    --border-color: rgba(112, 147, 176, 0.2);
    --glow-color: rgba(150, 199, 226, 0.08); /* Reduced for readability */
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    isolation: isolate;
}

/* Global Animated Background Gradients for Main Website */
body::before, body::after {
    content: '';
    position: fixed; /* Fixed so it follows the user while scrolling */
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    pointer-events: none;
    animation: drift-global 20s infinite alternate ease-in-out;
}

body::before {
    width: 60vw;
    height: 60vh;
    background-color: rgba(37, 99, 235, 0.35); /* Deep Blue */
    top: -10%;
    left: 10%;
}

body::after {
    width: 50vw;
    height: 50vh;
    background-color: rgba(14, 165, 233, 0.3); /* Sky Blue */
    bottom: -10%;
    right: 5%;
    animation-delay: -10s;
}

@keyframes drift-global {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(50px, -30px) scale(1.15);
    }
}

h1, h2, h3, .logo-text, .btn-primary, .btn-secondary, .btn-secondary-link, .btn-primary-small, .sticky-cta {
    font-family: 'Outfit', sans-serif;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(8, 12, 20, 0.95); /* less blur, more solid */
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-logo {
    height: 60px;
    width: 60px;
    filter: drop-shadow(0 0 8px rgba(150, 199, 226, 0.3));
}

.logo-text {
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: 1px;
    background: linear-gradient(90deg, var(--primary-light-blue), var(--primary-slate-blue));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a:not(.btn-primary-small) {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover:not(.btn-primary-small) {
    color: var(--primary-light-blue);
}

/* Buttons */
.btn-primary, .btn-primary-small, .sticky-cta {
    background: linear-gradient(135deg, var(--primary-slate-blue), var(--primary-light-blue));
    color: #080C14;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary-small {
    padding: 0.6rem 1.4rem;
    font-size: 0.95rem;
}

.btn-primary:hover, .btn-primary-small:hover, .sticky-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px var(--glow-color);
}

.btn-secondary-link {
    background: transparent;
    color: var(--text-muted);
    padding: 0.8rem 1rem;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}
.btn-secondary-link:hover {
    color: var(--text-light);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
    padding-top: 80px; 
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.headline {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.highlight {
    background: linear-gradient(90deg, var(--primary-light-blue), #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-headline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

/* Glow orb reduced */
.glow-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--glow-color) 0%, transparent 60%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    filter: blur(50px);
}

/* Services */
.services-section {
    padding: 6rem 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #fff;
}
.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 320px;
    max-width: 380px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    border-color: var(--primary-light-blue);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.service-card .icon {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.service-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.micro-cta {
    color: var(--primary-light-blue);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
    margin-top: auto;
}
.micro-cta:hover {
    opacity: 0.8;
}

/* How It Works */
.how-it-works-section {
    padding: 6rem 5%;
    background-color: rgba(12, 17, 28, 0.4);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 1rem;
}

.step-box {
    flex: 1;
    min-width: 250px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.step-box.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-num {
    width: 40px;
    height: 40px;
    background: var(--primary-slate-blue);
    color: #080C14;
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
}

.step-box h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}
.step-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.step-connector {
    width: 40px;
    height: 2px;
    background: var(--border-color);
    flex-shrink: 0;
}

/* About Section */
.about-section {
    padding: 6rem 5%;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(10, 15, 25, 1) 100%);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 4rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: left;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}
.about-content strong {
    color: #fff;
}

/* Social Proof */
.social-proof-section {
    padding: 3rem 5%;
    background: #06090e;
    text-align: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.social-proof-section p {
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
    font-family: 'Outfit', sans-serif;
}

/* Email Capture */
.capture-section {
    padding: 6rem 5%;
    background: var(--bg-dark);
}
.capture-box {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--primary-slate-blue);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}
.capture-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.capture-box p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}
.capture-form {
    display: flex;
    gap: 0.5rem;
}
.capture-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    background: rgba(0,0,0,0.3);
    color: #fff;
    font-family: 'Inter', sans-serif;
    outline: none;
}
.capture-form input:focus {
    border-color: var(--primary-light-blue);
}

/* Contact */
.contact-section {
    padding: 6rem 5%;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.contact-section p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3.5rem;
}

.calendly-embed {
    width: 100%;
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem 5%;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.95rem;
    background-color: #05080d;
}

/* Responsive */
@media (max-width: 768px) {
    .headline { font-size: 2.8rem; }
    .nav-links { display: none; }
    .hero-ctas { flex-direction: column; }
    .step-connector { display: none; }
    .capture-form { flex-direction: column; }
    .sticky-cta {
        bottom: 20px;
        right: 20px;
        padding: 0.8rem 1.5rem;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
