:root {
    /* Brand */

    --primary: #0f172a;
    --primary-light: #1e293b;

    --accent: #2563eb;
    --accent-hover: #1d4ed8;

    /* Backgrounds */

    --bg-primary: #f8fafc;
    --bg-secondary: #ffffff;

    /* Text */

    --text-primary: #0f172a;
    --text-secondary: #64748b;

    /* Borders */

    --border: #e2e8f0;

    /* States */

    --success: #16a34a;
    --warning: #f59e0b;
    --danger: #dc2626;

    /* Radius */

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Shadows */

    --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.05);

    --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);

    --shadow-lg: 0 20px 60px rgba(15, 23, 42, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;

    font-size: 16px;

    line-height: 1.6;

    color: var(--text-primary);

    background: var(--bg-primary);

    overflow-x: hidden;
}

/* --------------------
   Hero Section
--------------------- */

.hero {
    position: relative;

    min-height: 100vh;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center top,
            rgba(37, 99, 235, 0.12),
            transparent 50%
        ),
        #f8fafc;

    padding: 120px 24px 80px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px);

    background-size: 50px 50px;

    mask-image: radial-gradient(circle at center, black 50%, transparent 100%);

    pointer-events: none;
}

.hero::after {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    left: 50%;
    top: 40%;

    transform: translate(-50%, -50%);

    background: radial-gradient(
        circle,
        rgba(37, 99, 235, 0.15),
        transparent 70%
    );

    filter: blur(80px);

    z-index: 0;
}

.hero-container {
    max-width: 1400px;

    margin: 0 auto;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    position: relative;

    z-index: 2;
}

.hero-content {
    max-width: 950px;
    margin-bottom: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 18px;

    background: rgba(37, 99, 235, 0.08);

    border: 1px solid rgba(37, 99, 235, 0.15);

    border-radius: 999px;

    color: #2563eb;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(3.5rem, 6vw, 5.5rem);

    font-weight: 700;

    line-height: 1.05;

    color: #0f172a;

    margin-bottom: 32px;

    letter-spacing: -3px;
}

.hero-description {
    max-width: 700px;

    margin: 0 auto 40px;

    font-size: 1.15rem;

    line-height: 1.8;

    color: #64748b;
}

.hero-actions {
    display: flex;
    justify-content: center;

    gap: 16px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 16px 32px;

    background: #2563eb;

    color: #ffffff;

    text-decoration: none;

    border-radius: 14px;

    font-weight: 600;

    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #1d4ed8;

    transform: translateY(-3px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 16px 32px;

    background: var(--primary);

    color: #ffffff;

    text-decoration: none;

    border-radius: 14px;

    font-weight: 600;

    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

.hero-preview {
    width: 100%;

    max-width: 1100px;

    background: white;

    border: 1px solid #e2e8f0;

    border-radius: 32px;

    padding: 32px;

    box-shadow: 0 20px 80px rgba(15, 23, 42, 0.08);
}

.preview-header {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.preview-header span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
}

.preview-body {
    display: grid;

    grid-template-columns:
        250px
        1fr;

    gap: 24px;
}

.preview-sidebar {
    height: 300px;

    background: #f1f5f9;

    border-radius: 20px;
}

.preview-content {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}

.preview-card {
    height: 140px;

    background: #f8fafc;

    border: 1px solid #e2e8f0;

    border-radius: 20px;
}

/* Background Glow */

.hero-grid {
    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px);

    background-size: 48px 48px;

    pointer-events: none;
}

/* Responsive */

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding: 100px 20px;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn-primary {
        width: 100%;
        max-width: 280px;
    }
}

/* --------------------
   Products Section
--------------------- */

.products-section {
    padding: 120px 0;

    background: #ffffff;
}

.section-header {
    text-align: center;

    max-width: 800px;

    margin: 0 auto 80px;
}

.section-badge {
    display: inline-flex;

    padding: 10px 18px;

    border-radius: 999px;

    background: rgba(37, 99, 235, 0.08);

    border: 1px solid rgba(37, 99, 235, 0.15);

    color: var(--accent);

    font-weight: 600;

    margin-bottom: 20px;
}

.section-header h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);

    margin-bottom: 20px;

    color: var(--primary);
}

.section-header p {
    font-size: 1.1rem;

    color: var(--text-secondary);

    line-height: 1.8;
}

.products-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.product-card {
    display: grid;
    grid-template-columns: 48% 52%;

    gap: 40px;

    padding: 28px;

    background: #fff;

    border: 1px solid #e5e7eb;

    border-radius: 28px;

    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.product-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow-md);
}

.product-image {
    overflow: hidden;

    height: 420px;

    border-radius: 18px;

    background: #f8fafc;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 14px;

    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.12);
}

.product-card:hover img {
    transform: scale(1.03);
}

.product-category {
    display: inline-flex;
    align-self: flex-start;

    padding: 8px 16px;

    border-radius: 999px;

    background: rgba(37, 99, 235, 0.08);

    color: var(--accent);

    font-size: 0.9rem;

    font-weight: 600;

    margin-bottom: 20px;
}

.product-content {
    padding: 45px;

    display: flex;

    flex-direction: column;
    justify-content: center;

    height: 100%;
}
.product-content h3 {
    font-size: 2rem;

    color: var(--primary);

    margin-top: 22px;
    margin-bottom: 22px;

    font-weight: 700;
}

.product-problem {
    margin-bottom: 40px;

    line-height: 1.9;

    color: #64748b;
}

.product-features {
    display: grid;

    grid-template-columns: repeat(2, minmax(180px, 1fr));

    row-gap: 24px;

    column-gap: 40px;
}

.product-features li {
    list-style: none;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 0;

    background: none;

    color: var(--primary);

    font-weight: 500;
}

.product-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 28px;
}

.product-tags span {
    padding: 8px 14px;

    border-radius: 999px;

    background: #eff6ff;

    color: var(--accent);

    font-size: 0.9rem;

    font-weight: 500;
}

.product-actions {
    margin-top: 45px;

    display: flex;

    gap: 18px;
}

.product-link {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 14px 30px;

    background: var(--primary);

    color: #fff;

    border-radius: 12px;

    text-decoration: none;

    font-weight: 600;

    transition: all 0.3s ease;

    box-shadow: 0 8px 22px rgba(14, 41, 83, 0.15);
}

.product-demo {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 14px 30px;

    background: #ffffff;

    color: var(--primary);

    border: 1px solid #dbe3ef;

    border-radius: 12px;

    text-decoration: none;

    font-weight: 600;

    transition: all 0.3s ease;
}
.product-demo:hover {
    background: #f5f9ff;

    border-color: #2563eb;

    color: #2563eb;

    text-decoration: none;

    transform: translateY(-4px) scale(1.03);

    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.15);
}

.product-link,
.product-demo {
    padding: 14px 28px;

    border-radius: 12px;

    text-decoration: none;

    font-weight: 600;
}

.product-link:hover {
    background: #173b72;

    color: #ffffff;

    text-decoration: none;

    transform: translateY(-4px) scale(1.03);

    box-shadow: 0 18px 35px rgba(14, 41, 83, 0.25);
}

@media (max-width: 992px) {
    .product-card {
        grid-template-columns: 1fr;
    }

    .product-image {
        min-height: 260px;
    }

    .product-content {
        padding: 30px;
    }

    .product-features {
        grid-template-columns: 1fr;
    }

    .product-actions {
        flex-direction: column;
    }

    .product-link,
    .product-demo {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-content h3 {
        font-size: 1.6rem;
    }

    .product-actions {
        flex-direction: column;

        gap: 16px;

        align-items: stretch;
    }

    .product-demo {
        width: 100%;
    }
}

/* --------------------
   Process Section
--------------------- */

.process-section {
    padding: 120px 0;

    background: #f8fafc;
}
.process-roadmap {
    position: relative;

    max-width: 1000px;

    margin: 80px auto 0;
}
.process-roadmap::before {
    content: "";

    position: absolute;

    left: 30px;

    top: 0;

    bottom: 0;

    width: 2px;

    background: var(--border);
}

.process-step {
    display: flex;

    gap: 32px;

    position: relative;

    margin-bottom: 60px;
}

.step-number {
    min-width: 60px;
    width: 60px;

    height: 60px;

    border-radius: 50%;

    background: var(--accent);

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    font-weight: 700;

    position: relative;

    z-index: 2;

    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
}

.step-content {
    flex: 1;

    background: white;

    border: 1px solid var(--border);

    border-radius: 20px;

    padding: 28px;

    box-shadow: var(--shadow-sm);

    transition: 0.3s;
}

.step-content:hover {
    transform: translateY(-4px);

    box-shadow: var(--shadow-md);
}

.step-content h3 {
    font-size: 1.4rem;

    color: var(--primary);

    margin-bottom: 12px;
}

.step-content p {
    color: var(--text-secondary);

    line-height: 1.8;
}

@media (max-width: 768px) {
    .process-step {
        gap: 20px;
    }

    .step-number {
        width: 50px;
        height: 50px;

        min-width: 50px;

        font-size: 0.9rem;
    }

    .process-roadmap::before {
        left: 24px;
    }
}

/*Footer */

.footer {
    background: #f8fafc;

    border-top: 1px solid var(--border);

    padding: 80px 0 30px;

    margin-top: 120px;
}

.footer-top {
    display: grid;

    grid-template-columns: 1.5fr 2fr;

    gap: 80px;

    align-items: start;
}

.footer-logo {
    font-size: 2rem;

    font-weight: 800;

    color: var(--primary);

    text-decoration: none;

    display: inline-block;
}

.footer-logo:hover {
    text-decoration: none;
}

.footer-logo span {
    color: var(--accent);
}

.footer-brand p {
    margin: 24px 0;

    color: var(--text-secondary);

    line-height: 1.8;

    max-width: 420px;
}

.footer-social {
    display: flex;

    gap: 16px;

    align-items: center;

    margin-top: 30px;
}

.footer-social a {
    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    border: 1px solid #e2e8f0;

    transition: 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-4px);

    box-shadow: 0 12px 30px rgba(14, 41, 83, 0.12);
}

.footer-social img {
    width: 24px;

    height: 24px;

    object-fit: contain;
}

.footer-social .company-link {
    background: var(--primary);

    border-color: var(--primary);
}

.footer-social .company-link:hover {
    background: #0b2245; /* Slightly darker Brilixis blue */

    transform: translateY(-4px);
}

.footer-social .company-logo {
    width: 28px;

    height: auto;
}

.footer-links {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 40px;

    align-items: start;
}

.footer-links a {
    color: var(--text-secondary);

    text-decoration: none;

    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--accent);

    text-decoration: none;
}

.footer-links h4 {
    color: var(--primary);

    margin-bottom: 20px;

    font-size: 1rem;

    font-weight: 700;
}

.footer-links ul {
    padding: 0;

    margin: 0;

    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-bottom {
    margin-top: 60px;

    padding-top: 24px;

    border-top: 1px solid var(--border);

    text-align: center;
}

.footer-bottom p {
    color: var(--text-secondary);

    margin: 0;
}



@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;

        margin-top: 80px;
    }

    .footer-top {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand p {
        max-width: none;

        margin: 22px auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;

        gap: 30px 20px;
    }

    .footer-links h4 {
        margin-bottom: 14px;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-bottom {
        margin-top: 40px;
    }
}

.cookie-banner {
    position: fixed;

    bottom: 25px;

    left: 50%;

    transform: translateX(-50%);

    width: min(920px, 92%);

    background: #fff;

    border: 1px solid #e2e8f0;

    border-radius: 18px;

    padding: 22px 28px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 25px;

    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);

    z-index: 9999;
}

.cookie-text p {
    margin: 8px 0 0;

    color: var(--text-secondary);

    line-height: 1.7;
}

.cookie-actions {
    display: flex;

    gap: 12px;
}

.cookie-actions button {
    padding: 12px 22px;

    border-radius: 10px;

    cursor: pointer;

    font-weight: 600;

    transition: 0.25s;
}

.cookie-primary {
    background: var(--primary);

    color: #fff;

    border: none;
}

.cookie-outline {
    background: #fff;

    border: 1px solid #cbd5e1;

    color: var(--primary);
}

.cookie-primary:hover {
    transform: translateY(-2px);
}

.cookie-outline:hover {
    background: #f8fafc;
}

@media (max-width: 768px) {
    .cookie-banner {
        left: 16px;
        right: 16px;
        bottom: 16px;

        width: auto;

        transform: none;

        padding: 18px;

        border-radius: 18px;

        display: flex;
        flex-direction: column;

        align-items: stretch;

        gap: 18px;
    }

    .cookie-text {
        width: 100%;
    }

    .cookie-text h4 {
        margin-bottom: 10px;

        font-size: 1rem;
    }

    .cookie-text p {
        margin: 0;

        font-size: 0.92rem;

        line-height: 1.6;

        word-break: normal;
    }

    .cookie-actions {
        display: flex;

        flex-direction: column-reverse;

        width: 100%;

        gap: 12px;
    }

    .cookie-actions button {
        width: 100%;

        height: 48px;

        font-size: 0.95rem;

        border-radius: 12px;
    }
}

