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

:root {
    /* Hex fallbacks for browsers without oklch() support (Chrome < 111, older Android) */
    --primary: #0d1e33;
    --primary-light: #122948;
    --accent: #1c70a6;
    --accent-dark: #155a88;
    --accent-light: #4d9ec0;
    --color-sky: #79c0d8;
    --color-deep: #0f2240;
    --bg-light: #f3f8fc;
    --bg-dark: #0d1e33;
    --text: #1e2835;
    --text-light: #607282;
    --white: #ffffff;
    --border: #dce5ed;
    --amber: #c98b2e;
    --shadow: 0 4px 20px rgba(7, 28, 52, 0.08);
    --shadow-hover: 0 8px 30px rgba(7, 28, 52, 0.15);
}

/* Override with wide-gamut oklch colors where supported */
@supports (color: oklch(0% 0 0)) {
    :root {
        --primary: oklch(16% 0.063 240);
        --primary-light: oklch(22% 0.072 232);
        --accent: oklch(44% 0.13 224);
        --accent-dark: oklch(36% 0.12 224);
        --accent-light: oklch(62% 0.11 215);
        --color-sky: oklch(72% 0.09 210);
        --color-deep: oklch(19% 0.08 232);
        --bg-light: oklch(97% 0.012 225);
        --bg-dark: oklch(16% 0.063 240);
        --text: oklch(22% 0.04 240);
        --text-light: oklch(52% 0.04 230);
        --border: oklch(90% 0.025 220);
        --amber: oklch(68% 0.14 55);
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
}

h1, h2 {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    letter-spacing: -0.02em;
}

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

/* ── Header & Navigation ── */
header {
    box-shadow: 0 1px 0 var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    padding: 0.9rem 0;
    background-color: rgba(255,255,255,0.95);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-mark {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.logo-name {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    letter-spacing: 0.01em;
}

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

/* Nav CTA Button */
.nav-cta {
    background-color: var(--accent) !important;
    color: var(--white) !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease !important;
}

.nav-cta:hover {
    background-color: var(--accent-dark) !important;
    transform: translateY(-1px);
}

/* Dropdown Navigation */
.has-dropdown {
    position: relative;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow-hover);
    min-width: 220px;
    padding: 0.5rem 0;
    list-style: none;
    z-index: 200;
}

.has-dropdown:hover .dropdown {
    display: block;
}

.dropdown li {
    padding: 0;
}

.dropdown li a {
    display: block;
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    color: var(--text);
    white-space: nowrap;
}

.dropdown li a:hover {
    background: var(--bg-light);
    color: var(--accent);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--primary);
    transition: 0.3s;
}

/* ── Hero Section ── */
.hero {
    background-color: var(--primary);
    background-image:
        radial-gradient(ellipse 65% 55% at 108% 12%, rgba(69, 155, 198, 0.32) 0%, transparent 55%),
        radial-gradient(ellipse 45% 40% at -8% 88%, rgba(12, 38, 78, 0.22) 0%, transparent 50%),
        linear-gradient(rgba(100,181,216,0.10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(100,181,216,0.10) 1px, transparent 1px);
    background-size: auto, auto, 42px 42px, 42px 42px;
    color: var(--white);
    padding: 7rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@supports (color: oklch(0% 0 0)) {
    .hero {
        background-image:
            radial-gradient(ellipse 65% 55% at 108% 12%, oklch(52% 0.15 215 / 0.32) 0%, transparent 55%),
            radial-gradient(ellipse 45% 40% at -8% 88%, oklch(25% 0.10 240 / 0.22) 0%, transparent 50%),
            linear-gradient(rgba(100,181,216,0.10) 1px, transparent 1px),
            linear-gradient(90deg, rgba(100,181,216,0.10) 1px, transparent 1px);
    }
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 28, 52, 0.62);
    z-index: 1;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
    .hero-video { display: none; }
}

@media (max-width: 768px) {
    .hero-video { display: none; }
}

.hero-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.2rem;
}

.hero-etym {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 1.8rem;
    color: #e9f3ff;
}

.hero-etym-word {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 2.1rem;
    font-style: italic;
    letter-spacing: 0.02em;
    color: #fff;
    text-shadow: 0 0 24px rgba(120, 190, 255, 0.55), 0 0 2px rgba(255,255,255,0.4);
}

.hero-etym-translit {
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(190, 220, 255, 0.85);
}

.hero-etym-meaning {
    font-size: 0.95rem;
    font-style: italic;
    color: rgba(230, 242, 255, 0.82);
    max-width: 34rem;
    line-height: 1.45;
}

@media (max-width: 768px) {
    .hero-etym-word { font-size: 1.6rem; }
    .hero-etym-meaning { font-size: 0.85rem; }
}

.hero.hero-no-video .hero-buttons--mobile-only { display: flex; }

.hero h1 {
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid var(--accent);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    background-color: var(--accent);
    color: var(--white);
}

.cta-button:hover {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 163, 224, 0.3);
}

.cta-outline {
    background-color: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.cta-outline:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: var(--white);
    box-shadow: none;
}

/* ── Mission Section ── */
.mission {
    padding: 5rem 0;
    text-align: center;
    background: var(--white);
}

.mission h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.mission-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-light);
}

.mission-text strong {
    color: var(--primary);
    font-weight: 600;
}

/* ── Section Shared ── */
.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Services Section ── */
.services {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.services h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    background-color: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--color-sky));
    border-radius: 10px 10px 0 0;
}

a.service-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: var(--bg-light);
    color: var(--accent);
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.service-card h3 {
    color: var(--primary);
    margin-bottom: 0.6rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ── Products Section ── */
.products {
    padding: 5rem 0;
    background: var(--white);
}

.products h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.product-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.product-card {
    position: relative;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem 2rem 2rem;
    transition: box-shadow 0.3s ease;
}

.product-card:hover {
    box-shadow: var(--shadow-hover);
}

.product-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
}

.product-card h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.product-card ul {
    list-style: none;
    margin-bottom: 1rem;
}

.product-card ul li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.4rem;
    font-size: 0.92rem;
    color: var(--text);
}

.product-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.product-note {
    font-size: 0.88rem;
    color: var(--text-light);
    font-style: italic;
    border-top: 1px solid var(--border);
    padding-top: 0.75rem;
    margin-top: 0.5rem;
}

/* ── Industries Section ── */
.industries {
    padding: 4rem 0;
    background: var(--bg-dark);
    text-align: center;
}

.industries h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}

.tag {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(0, 163, 224, 0.15);
    border: 1px solid rgba(0, 163, 224, 0.3);
    border-radius: 50px;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.3s;
}

.tag:hover {
    background: rgba(0, 163, 224, 0.25);
}

/* ── About Section ── */
.about {
    padding: 5rem 0;
    background: var(--white);
}

.about h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 3rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.about-grid {
    counter-reset: about-counter;
}

.about-item {
    padding: 1.75rem 2rem;
    background: var(--bg-light);
    border-radius: 10px;
    border: 1px solid var(--border);
    counter-increment: about-counter;
}

.about-item::before {
    content: '0' counter(about-counter);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 0.5rem;
}

.about-item h3 {
    color: var(--primary);
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
}

.about-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ── Contact Section ── */
.contact {
    padding: 5rem 0;
    background: var(--bg-light);
    text-align: center;
}

.contact h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-top: 2rem;
}

.contact-item h3 {
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.3rem;
}

.contact-item a {
    color: var(--accent);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* ── Footer ── */
footer {
    background-color: var(--bg-dark);
    color: rgba(255,255,255,0.6);
    padding: 3rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 260px;
}

.footer-brand p {
    font-size: 0.85rem;
    margin-top: 0.3rem;
}

.footer-social {
    margin-top: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-social svg {
    flex-shrink: 0;
}

.footer-social a:hover {
    color: var(--accent);
}

.footer-brand .logo {
    color: var(--white);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .navbar {
        background-color: var(--white);
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem 24px;
        gap: 1rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    /* Mobile dropdown */
    .dropdown {
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        min-width: auto;
        padding-left: 1rem;
        display: none;
    }

    .dropdown.show {
        display: block;
    }

    .has-dropdown:hover .dropdown {
        display: none;
    }

    .dropdown.show {
        display: block !important;
    }

    .nav-cta {
        text-align: center;
        display: block !important;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .product-cards {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
        min-width: 0;
        width: 100%;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-social {
        align-items: center;
    }
}

/* ── Animations ── */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.nav-links a.active-link {
    color: var(--accent);
}

/* ── Cookie Consent Banner ── */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.9);
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 24px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cookie-text {
    flex: 1;
}

.cookie-text strong {
    font-size: 1rem;
    display: block;
    margin-bottom: 0.3rem;
    color: var(--white);
}

.cookie-text p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.6rem 1.5rem;
    border: 2px solid var(--accent);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.cookie-btn-accept {
    background: var(--accent);
    color: var(--white);
}

.cookie-btn-accept:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}

.cookie-btn-refuse {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.3);
}

.cookie-btn-refuse:hover {
    border-color: var(--white);
    color: var(--white);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-buttons {
        justify-content: center;
    }
}

/* ── Language Switcher ── */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: 0.8rem;
    padding-left: 1rem;
    border-left: 1px solid var(--border);
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-light);
    font-family: inherit;
    padding: 0.2rem 0.25rem;
    letter-spacing: 0.05em;
    border-radius: 3px;
    transition: color 0.2s, background 0.2s;
    line-height: 1;
}

.lang-btn:hover {
    color: var(--accent);
}

.lang-btn.lang-active {
    color: var(--accent);
}

.lang-sep {
    color: var(--border);
    font-size: 0.78rem;
    line-height: 1;
    user-select: none;
}

@media (max-width: 768px) {
    .lang-switcher {
        border-left: none;
        border-top: 1px solid var(--border);
        padding-left: 0;
        margin-left: 0;
        padding-top: 0.75rem;
        margin-top: 0.25rem;
    }
}

/* ── Page Section Nav ── */
.page-nav {
    background: var(--white);
    border-bottom: 2px solid var(--border);
    position: sticky;
    top: 57px;
    z-index: 90;
    box-shadow: 0 2px 8px rgba(10, 37, 64, 0.05);
}

.page-nav .container {
    display: flex;
    align-items: stretch;
    gap: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.page-nav-burger {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 0;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    font-family: inherit;
    letter-spacing: 0.01em;
}

.page-nav-burger svg {
    flex-shrink: 0;
    color: var(--primary);
}

.page-nav-label {
    color: var(--primary);
}

.page-nav-list {
    display: flex;
    list-style: none;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 0;
    padding: 0;
    margin: 0;
}

.page-nav-list::-webkit-scrollbar {
    display: none;
}

.page-nav-link {
    display: block;
    padding: 0.9rem 1.1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.page-nav-link:hover {
    color: var(--primary);
}

.page-nav-link.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
    font-weight: 600;
}

@media (max-width: 768px) {
    .page-nav {
        top: 53px;
    }

    .page-nav-burger {
        display: flex;
    }

    .page-nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        box-shadow: 0 6px 16px rgba(10, 37, 64, 0.12);
        border-top: 1px solid var(--border);
        z-index: 200;
    }

    .page-nav-list.open {
        display: flex;
    }

    .page-nav-link {
        padding: 0.85rem 1.5rem;
        border-bottom: 1px solid var(--border) !important;
        margin-bottom: 0;
    }

    .page-nav-link:last-child {
        border-bottom: none !important;
    }
}
