:root {
    /* OrbiMaps Blue Palette (Replacing Jazida Green) */
    --primary-color: #2563eb;
    /* Blue 600 */
    --primary-dark: #1e40af;
    /* Blue 800 */
    --primary-light: #eff6ff;
    /* Blue 50 */
    --accent-color: #3b82f6;
    /* Blue 500 */

    /* Neutral Tones (Jazida Style) */
    --bg-body: #ffffff;
    --bg-section-gray: #f8fafc;
    /* Slate 50 */
    --text-main: #1e293b;
    /* Slate 800 */
    --text-muted: #64748b;
    /* Slate 500 */

    /* Floating Effects */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-floating: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-body);
    -webkit-font-smoothing: antialiased;
}

/* Typography Overrides */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #0f172a;
}

/* Section Styling */
.section-gray {
    background-color: var(--bg-section-gray);
}

.section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Floating Cards (Jazida Style) */
.floating-card {
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.floating-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-floating);
}

/* Hero Section Specifics */
.hero-wrapper {
    position: relative;
    padding-top: 8rem;
    /* Space for fixed header */
    padding-bottom: 6rem;
    overflow: hidden;
}

.hero-bg-blob {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-light) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    opacity: 0.8;
}

.floating-interface-mockup {
    position: relative;
    z-index: 10;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    border: 4px solid rgba(255, 255, 255, 0.8);
}

/* Navbar Enhancements */
.jazida-navbar {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.jazida-nav-link {
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s;
    font-size: 0.95rem;
}

.jazida-nav-link:hover {
    color: var(--primary-color);
}

.btn-primary-jazida {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s, transform 0.1s;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}

.btn-primary-jazida:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
}

/* Trust Signals */
.trust-logo-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.6;
    filter: grayscale(100%);
}

.trust-logo-grid img {
    transition: filter 0.3s, opacity 0.3s;
}

.trust-logo-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Footer "Site-Like" */
.footer-jazida {
    background-color: #1e293b;
    /* Slate 800 */
    color: white;
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.footer-col-title {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #94a3b8;
    /* Slate 400 */
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.footer-link {
    display: block;
    color: #cbd5e1;
    /* Slate 300 */
    margin-bottom: 0.75rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: white;
}