/* HealthHaven.ai - Marketing Page Styles */
.font-heading { font-family: 'Space Grotesk', sans-serif; }
.font-body { font-family: 'Inter', sans-serif; }
.gradient-text-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.gradient-text-accent {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #fff; border: none; padding: 0.75rem 1.75rem; border-radius: var(--radius);
    font-weight: 600; cursor: pointer; transition: all 0.3s ease;
    display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.95rem;
}
.btn-primary:hover { opacity: 0.92; transform: translateY(-0.0625rem); box-shadow: 0 0.5rem 1.875rem rgba(8,145,178,0.3); }
.btn-ghost {
    background: transparent; color: var(--color-text); border: 0.0625rem solid var(--color-border);
    padding: 0.75rem 1.75rem; border-radius: var(--radius); font-weight: 600;
    cursor: pointer; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.95rem;
}
.btn-ghost:hover { border-color: var(--color-primary); color: var(--color-primary); background: rgba(8,145,178,0.05); }
.grid-bg {
    background-image: linear-gradient(rgba(30,41,59,0.4) 0.0625rem, transparent 0.0625rem), linear-gradient(90deg, rgba(30,41,59,0.4) 0.0625rem, transparent 0.0625rem);
    background-size: 3.75rem 3.75rem;
}
.nav-blur { backdrop-filter: blur(1rem); -webkit-backdrop-filter: blur(1rem); }
.tab-btn.tab-active { color: var(--color-primary) !important; border-color: var(--color-primary) !important; background: rgba(8,145,178,0.08) !important; }
.pricing-popular { border-color: var(--color-primary) !important; position: relative; }
.pricing-popular::before {
    content: 'Most Popular'; position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #fff; padding: 0.25rem 1rem; border-radius: 9999px; font-size: 0.75rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap;
}
html { scroll-behavior: smooth; }
.hero-glow-primary {
    position: absolute; width: 37.5rem; height: 37.5rem; border-radius: 50%;
    background: radial-gradient(circle, rgba(8,145,178,0.12) 0%, transparent 70%); pointer-events: none;
}
.hero-glow-secondary {
    position: absolute; width: 31.25rem; height: 31.25rem; border-radius: 50%;
    background: radial-gradient(circle, rgba(124,58,237,0.1) 0%, transparent 70%); pointer-events: none;
}
.pillar-icon {
    width: 3.5rem; height: 3.5rem; display: flex; align-items: center; justify-content: center;
    border-radius: 0.75rem; font-size: 1.25rem; flex-shrink: 0;
}
.step-number {
    width: 2.5rem; height: 2.5rem; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; font-weight: 700; font-size: 0.875rem; flex-shrink: 0;
}
.room-type-icon {
    width: 3rem; height: 3rem; display: flex; align-items: center; justify-content: center;
    border-radius: 0.625rem; font-size: 1.1rem; flex-shrink: 0;
}
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(0.75rem); } to { opacity: 1; transform: translateY(0); } }
.stat-item { animation: fadeSlideUp 0.6s ease forwards; }
.stat-item:nth-child(2) { animation-delay: 0.1s; }
.stat-item:nth-child(3) { animation-delay: 0.2s; }
.stat-item:nth-child(4) { animation-delay: 0.3s; }
.hamburger-line { display: block; width: 1.25rem; height: 0.125rem; background: var(--color-text); transition: all 0.3s ease; border-radius: 0.125rem; }
.hamburger-active .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(0.25rem, 0.25rem); }
.hamburger-active .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger-active .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(0.25rem, -0.25rem); }
.pricing-check { color: var(--color-accent); margin-right: 0.5rem; flex-shrink: 0; }
