:root {
    /* Color Palette - Aligned with Logo Branding */
    --bg-dark: #0a0b10;
    --bg-card: rgba(20, 22, 32, 0.7);
    --primary: #f86d00; /* Signature Orange */
    --secondary: #a6a6a6; /* Signature Grey */
    --accent: #ff4500;
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    /* Typography */
    --font-main: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Glassmorphism utility */
.glass {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
}

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

/* Header & Nav */
header {
    padding: 24px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding-top: 160px;
    padding-bottom: 80px;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero h1 span {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 48px;
}

/* Search Bar */
.search-container {
    max-width: 700px;
    margin: 0 auto 64px;
    padding: 12px;
}

.search-box {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.search-box input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 16px 24px;
    color: white;
    font-size: 1rem;
    outline: none;
}

.search-box button {
    background: var(--primary);
    color: var(--bg-dark);
    border: none;
    padding: 0 32px;
    font-weight: 700;
    cursor: pointer;
    transition: filter 0.3s ease;
}

.search-box button:hover {
    filter: brightness(1.2);
}

/* Solutions Grid */
.solutions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    padding-bottom: 100px;
}

.card {
    padding: 40px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    text-align: left;
}

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

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--primary);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.card p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.card-cta {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--primary);
    padding: 8px 24px;
    border-radius: 8px;
    transition: background 0.3s ease, color 0.3s ease;
}

.card-cta:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

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

.animate {
    animation: fadeIn 0.8s ease forwards;
}

/* Background elements */
.bg-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(248, 109, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}
