/* Core Styling Variables adopting a clean, modern glassmorphism palette */
:root {
    --bg-primary: #0a0f1d;
    --bg-secondary: #121829;
    --accent-blue: #3b82f6;
    --accent-glow: rgba(59, 130, 246, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.07);
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --font-stack: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-stack);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 0;
}

/* Glassmorphism Generic Card Filter */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

/* Navbar Navigation */
.navbar {
    background: rgba(10, 15, 29, 0.8);
    backdrop-filter: blur(12px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}
.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}
.logo {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.5px;
}
.logo span { color: var(--accent-blue); }
.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}
.nav-links a:hover { color: #fff; }
.btn-nav {
    background: var(--accent-blue);
    color: #fff !important;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
}

/* Hero Frame */
.hero {
    padding-top: 10rem;
    padding-bottom: 6rem;
    background: radial-gradient(circle at 80% 20%, var(--accent-glow), transparent 40%);
}
.hero-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}
.badge {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--accent-blue);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}
.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin: 1.5rem 0;
    font-weight: 700;
    letter-spacing: -1px;
}
.hero-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; }
.btn {
    padding: 0.8rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-block;
}
.btn-primary {
    background: var(--accent-blue);
    color: #fff;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4); }
.btn-secondary {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: #fff;
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); }
.glass-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
}

/* Trusted By Grid */
.trusted-by { background: var(--bg-secondary); border-y: 1px solid var(--glass-border); }
.section-subtitle { text-align: center; color: var(--text-muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 2rem; }
.logo-grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 2rem; align-items: center; opacity: 0.75; }
.client-logo { font-weight: 600; color: #fff; font-size: 1.1rem; letter-spacing: 0.5px; }

/* Features & Industries layout */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: 2.2rem; margin-bottom: 1rem; }
.section-header p { color: var(--text-muted); }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 16px;
    transition: all 0.3s;
}
.feature-card:hover { border-color: var(--accent-blue); transform: translateY(-4px); }
.feature-card i { font-size: 2rem; color: var(--accent-blue); margin-bottom: 1.5rem; }
.feature-card h3 { margin-bottom: 1rem; font-size: 1.3rem; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; }

.industry-grid { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.ind-card { background: var(--glass-bg); border: 1px solid var(--glass-border); padding: 1rem 2rem; border-radius: 12px; display: flex; align-items: center; gap: 1rem; }
.ind-card i { color: var(--accent-blue); }

/* Pricing Architecture Matrix */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; align-items: stretch; }
.price-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
}
.price-card.featured {
    border-color: var(--accent-blue);
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.08), transparent);
}
.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-blue);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 1rem;
    border-radius: 50px;
}
.price-card h3 { font-size: 1.4rem; margin-bottom: 1rem; }
.price { font-size: 2rem; font-weight: 700; margin-bottom: 2rem; color: #fff; }
.price span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.price-features { list-style: none; margin-bottom: 2.5rem; flex-grow: 1; }
.price-features li { margin-bottom: 0.8rem; font-size: 0.95rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.5rem; }
.price-features li i { color: var(--accent-blue); font-size: 0.85rem; }
.price-card .btn { text-align: center; width: 100%; }

/* Footer */
.footer { background: var(--bg-secondary); border-top: 1px solid var(--glass-border); padding-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem; padding-bottom: 4rem; }
.footer-info h3 { margin-bottom: 1rem; font-size: 1.4rem; }
.footer-info p { color: var(--text-muted); margin-bottom: 0.5rem; }
.footer-contact h4 { margin-bottom: 1.5rem; }
.contact-link { display: flex; align-items: center; gap: 1rem; color: var(--text-muted); text-decoration: none; margin-bottom: 1rem; font-size: 1.1rem; transition: color 0.3s; }
.contact-link:hover { color: var(--accent-blue); }
.footer-bottom { border-top: 1px solid var(--glass-border); text-align: center; padding: 2rem 0; color: var(--text-muted); font-size: 0.85rem; }

/* Mobile Adaptations */
@media(max-width: 968px) {
    .hero-container, .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-actions { justify-content: center; }
    .nav-links { display: none; } /* Standard collapse placeholder */
}