/* 
   GrowthPulse Digital Design System
   Brand Personality: Modern, Strategic, High-Performance, Data-Driven
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --primary: #7b2cbf; /* Electric Purple */
    --secondary: #0a192f; /* Deep Navy */
    --accent: #00f5d4; /* Vibrant Cyan */
    --bg-light: #ffffff;
    --bg-dark: #050b1a;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #8892b0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 20px 40px rgba(0,0,0,0.1);
}

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

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

h1, h2, h3, h4, .logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* BrandVelocity Badge */
.bv-badge {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(10, 25, 47, 0.9);
    backdrop-filter: blur(10px);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 1000;
    border: 1px solid rgba(0, 245, 212, 0.2);
    font-weight: 700;
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    padding: 30px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(20px);
    padding: 15px 5%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.logo {
    font-size: 24px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    color: var(--primary);
}

nav ul {
    display: flex;
    gap: 35px;
}

nav ul li a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    opacity: 0.8;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--accent);
    opacity: 1;
}

.nav-cta {
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(123, 44, 191, 0.3);
}

/* Sections */
section {
    padding: 120px 5%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

h2 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--secondary);
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Cards */
.service-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(123, 44, 191, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 24px;
    margin-bottom: 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 36px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: #6a24a3;
    transform: translateY(-3px);
}

.btn-outline {
    border: 2px solid var(--accent);
    color: var(--accent);
}

/* Footer */
footer {
    background: var(--secondary);
    color: white;
    padding: 100px 5% 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-col h4 {
    margin-bottom: 30px;
    font-size: 18px;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--accent);
}

.copyright {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
}
