
/* Homepage Hero Settings */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: var(--space-24);
    position: relative;
    z-index: 1;
}

.hero-bg-glow {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 124, 97, 0.4) 0%, rgba(11, 31, 59, 0) 70%);
    z-index: -1;
    border-radius: 50%;
    filter: blur(60px);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.text-emerald { color: var(--color-emerald) !important; }
.text-gold { color: var(--color-gold) !important; }
.text-navy { color: var(--color-navy) !important; }
.text-white { color: var(--color-white) !important; }

.bg-white { background-color: var(--color-white); }
.bg-off-white { background-color: var(--color-off-white); }
.bg-navy { background-color: var(--color-navy); }
.bg-emerald { background-color: var(--color-emerald); }

.flex { display: flex; }
.gap-4 { gap: var(--space-4); }

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    background: transparent;
}
.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
}

/* Dashboard Mockups */
.dashboard-mockup {
    width: 100%;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
}

.mockup-header {
    background: rgba(0, 0, 0, 0.2);
    padding: var(--space-3) var(--space-4);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dots {
    display: flex;
    gap: 6px;
    margin-right: var(--space-4);
}

.dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.dot-red { background-color: #ff5f56; }
.dot-yellow { background-color: #ffbd2e; }
.dot-green { background-color: #27c93f; }

.mockup-title {
    font-size: var(--text-sm);
    color: var(--color-gray-400);
    font-weight: 500;
}

.mockup-body {
    padding: var(--space-6);
}

.chart-container {
    height: 150px;
    display: flex;
    align-items: flex-end;
    gap: 10%;
    margin-bottom: var(--space-6);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
    padding-bottom: var(--space-2);
}

.chart-bar {
    flex: 1;
    background: var(--gradient-accent);
    border-radius: 4px 4px 0 0;
    transition: height 1.5s ease;
    animation: growBar 1.5s ease-out forwards;
    transform-origin: bottom;
}

@keyframes growBar {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.stat-card {
    padding: var(--space-3);
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: var(--text-xs);
    color: var(--color-gray-300);
    text-transform: uppercase;
}

.stat-value {
    font-size: var(--text-2xl);
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-white);
    margin: var(--space-1) 0;
}

.stat-change.positive { color: var(--color-emerald-light); }
.stat-change { font-size: var(--text-xs); font-weight: 600; }

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Social Proof */
.logo-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-10);
    opacity: 0.6;
}

.logo-placeholder {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 800;
    color: var(--color-gray-600);
    letter-spacing: -1px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
}

.service-card {
    padding: var(--space-8);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-gray-200);
}

.hover-shadow:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--color-emerald);
}
.transition { transition: all var(--transition-normal); }

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Dashboard Feature */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
}

.align-center-y {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-3);
    font-weight: 500;
    color: var(--color-navy);
}

.mr-2 { margin-right: var(--space-2); }
.max-w-2xl { max-width: 42rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Process */
.flex-row-responsive {
    display: flex;
    justify-content: space-between;
    gap: var(--space-4);
}

.step {
    flex: 1;
}

.step-number {
    width: 48px;
    height: 48px;
    font-size: var(--text-xl);
    font-weight: 700;
    font-family: var(--font-heading);
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-steps {
    position: relative;
}

/* Desktop squiggly line connection placeholder */
@media (min-width: 768px) {
    .step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 24px;
        left: 60%;
        width: 80%;
        height: 2px;
        background: rgba(255, 255, 255, 0.1);
        z-index: 0;
    }
    .step-number { position: relative; z-index: 1; }
}

/* Dashboard Visuals inside Light section */
.main-dashboard {
    height: 350px;
    padding: var(--space-6);
    background: var(--color-navy-dark);
}

.dash-header {
    color: white;
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: var(--space-4);
}

.float-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    padding: var(--space-4);
    background: white;
    border: 1px solid var(--color-gray-200);
}

.cta {
    padding: var(--space-24) 0;
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
}

.bg-navy.btn-primary:hover {
    background: var(--color-navy-light);
}

/* Responsiveness */
@media (max-width: 992px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-actions { justify-content: center; }
    .hero-bg-glow { left: 50%; transform: translateX(-50%); right: auto; }
    .grid-2-col { grid-template-columns: 1fr; }
    .flex-row-responsive { flex-direction: column; gap: var(--space-12); }
    .step::after { display: none; }
}
