@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-primary: #090b12;
    --bg-secondary: #111528;
    --text-primary: #f4f7ff;
    --text-muted: #bac5ea;
    --accent-1: #5a8cff;
    --accent-2: #22d3ee;
    --border-glass: rgba(255, 255, 255, 0.14);
    --shadow-deep: 0 24px 50px rgba(0, 0, 0, 0.45);
}

html {
    scroll-behavior: smooth;
}

body.site-body {
    font-family: "Poppins", sans-serif;
    color: var(--text-primary);
    background:
        radial-gradient(circle at 20% 15%, rgba(90, 140, 255, 0.18), transparent 30%),
        radial-gradient(circle at 80% 0%, rgba(34, 211, 238, 0.12), transparent 30%),
        linear-gradient(165deg, #07090f 0%, #0d1120 55%, #0a0d16 100%);
    min-height: 100vh;
}

.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(6, 9, 17, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-badge {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    box-shadow: 0 10px 20px rgba(90, 140, 255, 0.45);
}

.brand-logo {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(90, 140, 255, 0.4);
}

.nav-link {
    color: var(--text-muted) !important;
}

.nav-link.active,
.nav-link:hover {
    color: #ffffff !important;
}

.eyebrow {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(90, 140, 255, 0.18);
    border: 1px solid rgba(90, 140, 255, 0.4);
    color: #d9e4ff;
    font-size: 0.85rem;
}

.btn-gradient {
    border: 0;
    color: #fff;
    background: linear-gradient(120deg, var(--accent-1), var(--accent-2));
    box-shadow: 0 14px 24px rgba(34, 211, 238, 0.22);
}

.btn-gradient:hover {
    color: #fff;
    transform: translateY(-1px);
}

.glass-card,
.product-card,
.testimonial-card,
.trial-card,
.cta-banner {
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-deep);
    backdrop-filter: blur(12px);
}

.product-card,
.testimonial-card {
    padding: 1.5rem;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    transform-style: preserve-3d;
}

.product-card:hover,
.testimonial-card:hover {
    transform: perspective(1000px) rotateX(3deg) rotateY(-4deg) translateY(-6px);
    border-color: rgba(90, 140, 255, 0.5);
    box-shadow: 0 28px 55px rgba(0, 0, 0, 0.55);
}

.icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    background: linear-gradient(145deg, rgba(90, 140, 255, 0.35), rgba(34, 211, 238, 0.3));
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.benefits-list {
    list-style: none;
    padding-left: 0;
}

.benefits-list li {
    margin-bottom: 0.8rem;
    color: var(--text-muted);
    position: relative;
    padding-left: 1.4rem;
}

.benefits-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: linear-gradient(120deg, var(--accent-1), var(--accent-2));
}

.testimonial-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(6, 9, 17, 0.85);
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-link:hover {
    color: #fff;
}

.form-control-dark {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
}

.form-control-dark:focus {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-1);
    color: #fff;
    box-shadow: 0 0 0 0.2rem rgba(90, 140, 255, 0.25);
}

.form-control-dark::placeholder {
    color: #a9b7df;
}

.product-modal {
    background: linear-gradient(160deg, rgba(8, 11, 20, 0.98), rgba(16, 22, 38, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--text-primary);
}

.product-modal .modal-body ul {
    padding-left: 1.1rem;
}

.industrial-panel,
.industrial-card,
.industrial-timeline {
    border-radius: 18px;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(117, 145, 214, 0.28);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
}

.industrial-card {
    padding: 1.4rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.industrial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(34, 211, 238, 0.48);
}

.industrial-card ul {
    padding-left: 1rem;
}

.industrial-timeline {
    position: relative;
    overflow: hidden;
}

.industrial-timeline::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(90, 140, 255, 0.08), rgba(34, 211, 238, 0.04));
    pointer-events: none;
}

@media (max-width: 991px) {
    .py-6 {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}
