:root {
    --pb-navy: #0b1f3a;
    --pb-cyan: #5fc8dd;
    --pb-sand: #edf1f4;
    --pb-ink: #102033;
    --pb-muted: #5d6b7b;
    --pb-radius: 1.5rem;
    --pb-ocean: #245e73;
    --pb-gold: #b58d52;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.site-theme {
    margin: 0;
    color: var(--pb-ink);
    background:
        radial-gradient(circle at top left, rgba(95, 200, 221, 0.16), transparent 30%),
        linear-gradient(180deg, #f4f8fb 0%, #eef3f7 100%);
}

body.lightbox-open {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1180px, calc(100% - 2rem));
    margin-inline: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: calc(var(--grid-gap, 0) * -0.5);
}

.row > * {
    width: 100%;
    padding: calc(var(--grid-gap, 0) * 0.5);
}

.g-3 {
    --grid-gap: 1rem;
}

.g-4 {
    --grid-gap: 1.5rem;
}

.g-5 {
    --grid-gap: 3rem;
}

.d-flex {
    display: flex;
}

.d-block {
    display: block;
}

.flex-column {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.justify-content-between {
    justify-content: space-between;
}

.align-items-center,
.align-items-lg-center {
    align-items: center;
}

.align-items-end,
.align-items-lg-end {
    align-items: flex-end;
}

.gap-2 {
    gap: 0.75rem;
}

.gap-3,
.gap-lg-2 {
    gap: 1rem;
}

.py-2 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.pt-0 {
    padding-top: 0;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-2 {
    margin-bottom: 0.75rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.ms-auto {
    margin-left: auto;
}

.small {
    font-size: 0.875rem;
}

.text-white {
    color: #fff;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.72);
}

.text-info-emphasis {
    color: var(--pb-ocean);
}

.fw-semibold {
    font-weight: 700;
}

.h-100 {
    height: 100%;
}

.position-relative {
    position: relative;
}

.border-bottom {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.display-3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(2.6rem, 6vw, 4.9rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.85rem 1.25rem;
    border: 1px solid transparent;
    font: inherit;
    cursor: pointer;
    transition: 180ms ease;
}

.btn-lg {
    min-height: 3.5rem;
    padding: 1rem 1.4rem;
}

.btn-outline-light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    font-weight: 700;
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--pb-navy);
}

.topbar {
    background: rgba(4, 12, 24, 0.28);
    backdrop-filter: blur(14px);
}

.topbar-link,
.footer-link {
    color: rgba(255, 255, 255, 0.88);
}

.topbar-link:hover,
.footer-link:hover {
    color: #fff;
}

.language-switcher {
    display: inline-flex;
    gap: 0.45rem;
}

.language-switcher a {
    color: rgba(255, 255, 255, 0.68);
    font-weight: 800;
}

.language-switcher a.active,
.language-switcher a:hover {
    color: #fff;
}

.site-header {
    position: relative;
    z-index: 10;
    background: linear-gradient(180deg, rgba(7, 17, 30, 0.98), rgba(7, 17, 30, 0.86));
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 2rem;
}

.navbar-brand img {
    width: auto;
    height: 36px;
}

.navbar-panel {
    margin-left: auto;
}

.nav-toggle {
    display: none;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.06);
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 0.28rem 0;
    border-radius: 999px;
    background: #fff;
}

.nav-link {
    display: inline-flex;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.navbar-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.5rem;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn-brand {
    background: var(--pb-ocean);
    border-color: var(--pb-ocean);
    color: #fff;
    border-radius: 999px;
    font-weight: 700;
    padding-inline: 1.4rem;
    box-shadow: 0 14px 28px rgba(36, 94, 115, 0.26);
}

.btn-brand:hover {
    background: #0f4d84;
    border-color: #0f4d84;
    color: #fff;
    box-shadow: 0 18px 34px rgba(36, 94, 115, 0.34);
}

.btn-brand:active {
    background: #0d426f;
    border-color: #0d426f;
}

.btn-outline-brand {
    background: transparent;
    border-color: rgba(20, 93, 160, 0.26);
    color: var(--pb-ocean);
    border-radius: 999px;
    font-weight: 700;
    padding-inline: 1.4rem;
}

.btn-outline-brand:hover {
    background: var(--pb-ocean);
    border-color: var(--pb-ocean);
    color: #fff;
}

.hero-section,
.page-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(7, 17, 30, 0.94), rgba(10, 42, 52, 0.86)),
        radial-gradient(circle at 18% 22%, rgba(95, 200, 221, 0.28), transparent 24rem),
        radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.12), transparent 18rem),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 5.5rem),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 5.5rem),
        #07111e;
}

.hero-section {
    padding: 5rem 0 4.5rem;
}

.page-hero {
    padding: 4.5rem 0 5rem;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow {
    color: #7adcf0;
}

.section-kicker {
    color: var(--pb-ocean);
}

.hero-copy,
.page-copy,
.section-copy,
.service-card p,
.feature-item p,
.project-card p,
.contact-card p,
.footer-copy {
    color: rgba(255, 255, 255, 0.8);
}

.page-copy,
.section-copy,
.service-card p,
.project-card p,
.contact-card p {
    color: var(--pb-muted);
}

.hero-copy,
.page-copy {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 42rem;
}

.hero-section-illustrated {
    z-index: 0;
    padding-bottom: 0;
}

.hero-blob {
    position: absolute;
    z-index: 0;
    display: block;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.55;
    pointer-events: none;
}

.hero-blob-a {
    top: -80px;
    left: -60px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(95, 200, 221, 0.5), transparent 70%);
    animation: pb-blob-drift 14s ease-in-out infinite;
}

.hero-blob-b {
    right: -80px;
    bottom: -100px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 70%);
    animation: pb-blob-drift 18s ease-in-out infinite reverse;
}

.hero-section-illustrated .container {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 3rem;
}

.hero-illustration-frame {
    position: relative;
    max-width: 26rem;
    margin-inline: auto;
    animation: pb-float-slow 6s ease-in-out infinite;
}

.illust-hero,
.illust-feature,
.illust-error {
    display: block;
    width: 100%;
    height: auto;
}

.hero-badge {
    position: absolute;
    left: 1.5rem;
    bottom: 1.5rem;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 1.2rem;
    background: rgba(8, 20, 37, 0.78);
    color: #fff;
    backdrop-filter: blur(18px);
}

.hero-badge span {
    display: block;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero-badge strong {
    font-size: 1rem;
}

.hero-stats-float {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.stat-pill {
    display: flex;
    flex: 1 1 180px;
    flex-direction: column;
    gap: 0.3rem;
    padding: 1.1rem 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 34px rgba(1, 10, 24, 0.28);
    backdrop-filter: blur(14px);
}

.stat-pill strong {
    color: #fff;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.4rem;
}

.stat-pill span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.85rem;
}

.wave-divider {
    position: relative;
    z-index: 1;
    height: 60px;
    margin-top: -2.5rem;
    overflow: hidden;
    color: #eef3f7;
    line-height: 0;
}

.wave-divider-track {
    display: flex;
    width: 200%;
    animation: pb-wave-scroll 16s linear infinite;
}

.wave-divider-track svg {
    display: block;
    width: 50%;
    height: 60px;
    flex-shrink: 0;
}

.illust-blob,
.illust-category-blob {
    animation: pb-blob-pulse 7s ease-in-out infinite;
    transform-origin: center;
}

.illust-cabin {
    animation: pb-sway 7s ease-in-out infinite;
    transform-origin: 260px 424px;
}

.illust-mascot {
    animation: pb-float 4.5s ease-in-out infinite;
    transform-origin: center;
}

.illust-sparkle {
    animation: pb-sparkle 2.4s ease-in-out infinite;
    transform-origin: center;
}

.illust-sparkle-2 {
    animation-delay: 0.6s;
}

.illust-sparkle-3 {
    animation-delay: 1.2s;
}

.illust-bubble {
    animation: pb-float 5s ease-in-out infinite;
}

.illust-bubble-2 {
    animation-duration: 6s;
    animation-delay: 1s;
}

.illust-bubble-3 {
    animation-duration: 4.5s;
    animation-delay: 2s;
}

.illust-steam path {
    animation: pb-steam-rise 3s ease-in-out infinite;
    transform-origin: center bottom;
}

.illust-steam path:nth-child(2) {
    animation-delay: 0.5s;
}

.illust-steam path:nth-child(3) {
    animation-delay: 1s;
}

.illust-ruler {
    animation: pb-sway 5s ease-in-out infinite;
    transform-origin: 60px 213px;
}

@keyframes pb-float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pb-float-slow {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes pb-sway {
    0%,
    100% {
        transform: rotate(-1.2deg);
    }

    50% {
        transform: rotate(1.2deg);
    }
}

@keyframes pb-blob-pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.9;
    }

    50% {
        transform: scale(1.06);
        opacity: 1;
    }
}

@keyframes pb-blob-drift {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -20px) scale(1.08);
    }

    66% {
        transform: translate(-20px, 15px) scale(0.95);
    }
}

@keyframes pb-sparkle {
    0%,
    100% {
        transform: scale(0.85) rotate(0deg);
        opacity: 0.65;
    }

    50% {
        transform: scale(1.15) rotate(12deg);
        opacity: 1;
    }
}

@keyframes pb-steam-rise {
    0% {
        transform: translateY(4px);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-6px);
        opacity: 0.9;
    }

    100% {
        transform: translateY(4px);
        opacity: 0.3;
    }
}

@keyframes pb-wiggle {
    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-6deg);
    }

    75% {
        transform: rotate(6deg);
    }
}

@keyframes pb-wave-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-blob-a,
    .hero-blob-b,
    .hero-illustration-frame,
    .illust-blob,
    .illust-category-blob,
    .illust-cabin,
    .illust-mascot,
    .illust-sparkle,
    .illust-bubble,
    .illust-steam path,
    .illust-ruler,
    .wave-divider-track {
        animation: none;
    }
}

.section-block {
    padding: 5.5rem 0;
}

.section-dark {
    background:
        radial-gradient(circle at right center, rgba(95, 200, 221, 0.15), transparent 30%),
        linear-gradient(180deg, #0e2443 0%, #0b1a31 100%);
}

.section-title,
.page-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
}

.page-title {
    color: #fff;
    font-size: clamp(2.5rem, 5vw, 4rem);
    max-width: 52rem;
}

.service-card,
.contact-card {
    padding: 2rem;
    border: 1px solid rgba(16, 32, 51, 0.08);
    border-radius: var(--pb-radius);
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 20px 45px rgba(39, 67, 96, 0.08);
    backdrop-filter: blur(14px);
}

.service-card h3,
.feature-item h3,
.project-card h3,
.project-card h2,
.contact-card h2,
.footer-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.service-index {
    margin-bottom: 1.5rem;
    color: var(--pb-ocean);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.feature-list {
    display: grid;
    gap: 1.2rem;
}

.feature-item {
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, 0.05);
}

.feature-item h3,
.feature-item p {
    color: #fff;
}

.feature-illustration {
    margin-top: 1.5rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.04);
}

.project-card {
    overflow: hidden;
    border: 1px solid rgba(16, 32, 51, 0.08);
    border-radius: 1.6rem;
    background: #fff;
    box-shadow: 0 18px 38px rgba(19, 47, 74, 0.08);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 50px rgba(19, 47, 74, 0.16);
}

.illust-card-media {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 3;
    padding: 1.5rem 1.5rem 0.5rem;
    background: linear-gradient(135deg, rgba(95, 200, 221, 0.14), rgba(255, 255, 255, 0));
}

.illust-category-icon {
    width: 100%;
    max-width: 148px;
    height: auto;
}

.project-card-illustrated:hover .illust-category-icon {
    animation: pb-wiggle 0.6s ease-in-out;
}

.project-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 320ms ease;
}

.project-card:hover img {
    transform: scale(1.04);
}

.project-card-image-button,
.reference-gallery-open {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.project-card-image-button img {
    width: 100%;
}

.project-card-body {
    padding: 1.4rem 1.4rem 1.6rem;
}

.project-meta,
.contact-label {
    display: inline-block;
    margin-bottom: 0.8rem;
    color: var(--pb-ocean);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.cta-section {
    padding: 0 0 5.5rem;
}

.cta-panel,
.contact-banner {
    display: grid;
    gap: 2rem;
    padding: 2rem;
    border-radius: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(232, 242, 248, 0.95));
    box-shadow: 0 24px 60px rgba(21, 47, 71, 0.12);
}

.page-shell {
    padding-bottom: 2rem;
}

.contact-link {
    color: var(--pb-ink);
    font-weight: 600;
}

.contact-link:hover {
    color: var(--pb-ocean);
}

.contact-layout-grid {
    display: grid;
    grid-template-columns: minmax(18rem, 0.85fr) minmax(0, 1.35fr);
    gap: 1.5rem;
    align-items: start;
}

.contact-info-panel,
.contact-form-panel {
    border: 1px solid rgba(16, 32, 51, 0.08);
    border-radius: 1.5rem;
    background: #fff;
    box-shadow: 0 18px 38px rgba(19, 47, 74, 0.08);
}

.contact-info-panel {
    padding: 1.6rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 251, 0.96)),
        radial-gradient(circle at top right, rgba(95, 200, 221, 0.16), transparent 18rem);
}

.contact-info-panel h2,
.contact-form-panel h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    line-height: 1.15;
}

.contact-info-panel h2 {
    max-width: 18rem;
}

.contact-methods {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.contact-methods a,
.contact-methods div {
    display: grid;
    gap: 0.25rem;
    padding: 1rem;
    border-radius: 0.9rem;
    background: #f4f8fb;
    color: var(--pb-ink);
}

.contact-methods a {
    border: 1px solid transparent;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.contact-methods a:hover {
    transform: translateY(-1px);
    border-color: rgba(20, 93, 160, 0.18);
    box-shadow: 0 14px 28px rgba(19, 47, 74, 0.08);
}

.contact-methods span {
    color: var(--pb-muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-form-panel {
    display: grid;
    gap: 1.2rem;
    padding: 1.6rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
        radial-gradient(circle at top left, rgba(20, 93, 160, 0.08), transparent 18rem);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.contact-field-wide {
    grid-column: 1 / -1;
}

.contact-form-panel label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 800;
}

.contact-form-panel input,
.contact-form-panel textarea,
.contact-form-panel select {
    width: 100%;
    min-height: 3rem;
    padding: 0.8rem 0.9rem;
    border: 1px solid rgba(16, 32, 51, 0.16);
    border-radius: 0.7rem;
    background: #fff;
    color: var(--pb-ink);
    font: inherit;
}

.contact-form-panel input:focus,
.contact-form-panel textarea:focus,
.contact-form-panel select:focus {
    outline: 0;
    border-color: rgba(20, 93, 160, 0.42);
    box-shadow: 0 0 0 4px rgba(20, 93, 160, 0.1);
}

.contact-form-panel textarea {
    resize: vertical;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-alert {
    padding: 0.9rem 1rem;
    border: 1px solid rgba(217, 65, 65, 0.2);
    border-radius: 0.8rem;
    background: #fff4f4;
    color: #9d2424;
}

.form-alert p {
    margin: 0;
}

.form-alert--success {
    border-color: rgba(36, 138, 61, 0.25);
    background: #f1fbf3;
    color: #1f6b34;
}

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 3rem 2rem;
    text-align: center;
}

.form-success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #2f9e54, #1f6b34);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(31, 107, 52, 0.28);
}

.form-success h2 {
    margin-bottom: 0;
}

.form-success p {
    max-width: 30rem;
    color: var(--pb-muted);
    line-height: 1.7;
}

.mini-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem;
}

.mini-gallery img {
    width: 100%;
    height: 140px;
    border-radius: 1.1rem;
    object-fit: cover;
}

.inline-link {
    color: var(--pb-ocean);
    font-weight: 800;
}

.image-placeholder {
    display: grid;
    width: 100%;
    aspect-ratio: 4 / 3;
    place-items: center;
    background: linear-gradient(135deg, #e7eef4, #cfe4ee);
    color: var(--pb-ocean);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 2rem;
    font-weight: 800;
}

.product-tree {
    display: grid;
    gap: 1.2rem;
}

.product-tree-card,
.content-panel,
.content-side,
.side-box {
    border: 1px solid rgba(16, 32, 51, 0.08);
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 38px rgba(19, 47, 74, 0.08);
}

.product-tree-card {
    display: grid;
    grid-template-columns: 14rem minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    overflow: hidden;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-tree-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 46px rgba(19, 47, 74, 0.14);
}

.product-tree-card-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 1.1rem;
    object-fit: cover;
    transition: transform 320ms ease;
}

.product-tree-card:hover .product-tree-card-image {
    transform: scale(1.04);
}

.product-tree-card h2,
.content-panel h2,
.reference-map-card h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    line-height: 1.15;
}

.product-children {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.product-children a {
    padding: 0.45rem 0.7rem;
    border: 1px solid rgba(20, 93, 160, 0.16);
    border-radius: 999px;
    color: var(--pb-ocean);
    background: #f6fbfd;
    font-size: 0.9rem;
    font-weight: 700;
}

.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 20rem;
    gap: 1.5rem;
    align-items: start;
}

.content-panel,
.content-side,
.side-box {
    padding: 1.5rem;
}

.content-gallery-wrap {
    margin-bottom: 1.5rem;
}

.content-gallery-wrap .reference-gallery-main {
    max-height: 420px;
}

.rich-text {
    color: var(--pb-muted);
    font-size: 1.04rem;
    line-height: 1.8;
}

.content-side {
    display: grid;
    gap: 1rem;
}

.reference-map-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 22rem;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.reference-map {
    position: relative;
    min-height: 460px;
    overflow: hidden;
    border: 1px solid rgba(16, 32, 51, 0.08);
    border-radius: 1.5rem;
    background: #dce7ed;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6), 0 18px 38px rgba(19, 47, 74, 0.08);
}

.reference-map-viewport,
.reference-map-tiles,
.reference-map-pins {
    position: absolute;
    inset: 0;
}

.reference-map-viewport {
    cursor: grab;
    touch-action: none;
}

.reference-map-viewport.dragging {
    cursor: grabbing;
}

.reference-map-tiles img {
    position: absolute;
    width: 256px;
    height: 256px;
    max-width: none;
    filter: grayscale(1) brightness(1.12) sepia(0.55) hue-rotate(170deg) saturate(2.4);
}

.reference-map-pins {
    z-index: 2;
}

.reference-map-controls {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 3;
    display: grid;
    overflow: hidden;
    border: 1px solid rgba(16, 32, 51, 0.14);
    border-radius: 0.65rem;
    background: #fff;
    box-shadow: 0 10px 24px rgba(11, 31, 58, 0.16);
}

.reference-map-controls button {
    display: grid;
    width: 2.5rem;
    height: 2.5rem;
    place-items: center;
    padding: 0;
    border: 0;
    border-bottom: 1px solid rgba(16, 32, 51, 0.1);
    background: #fff;
    color: var(--pb-ink);
    font: inherit;
    font-size: 1.35rem;
    font-weight: 800;
    cursor: pointer;
}

.reference-map-controls button:last-child {
    border-bottom: 0;
}

.reference-map-controls button:hover {
    background: #eef6fa;
    color: var(--pb-ocean);
}

.reference-map-attribution {
    position: absolute;
    right: 0.6rem;
    bottom: 0.55rem;
    z-index: 3;
    padding: 0.25rem 0.45rem;
    border-radius: 0.45rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--pb-muted);
    font-size: 0.72rem;
}

.reference-map-attribution a {
    color: var(--pb-ocean);
    font-weight: 700;
}

.reference-pin {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    width: 1.25rem;
    height: 1.25rem;
    place-items: center;
    padding: 0;
    border: 2px solid #fff;
    border-radius: 999px;
    background: var(--pb-ocean);
    box-shadow: 0 8px 18px rgba(11, 31, 58, 0.24);
    transform: translate(-50%, -50%);
}

.reference-pin::before {
    position: absolute;
    inset: 0.22rem;
    border-radius: inherit;
    background: #fff;
    content: "";
    opacity: 0;
    transition: opacity 160ms ease;
}

.reference-pin::after {
    position: absolute;
    inset: -0.45rem;
    border-radius: inherit;
    content: "";
}

.reference-pin.active,
.reference-pin:hover {
    background: var(--pb-gold);
    transform: translate(-50%, -50%) scale(1.2);
}

.reference-pin.active::before,
.reference-pin:hover::before {
    opacity: 1;
}

.reference-map-panel {
    min-height: 460px;
}

.reference-map-card {
    display: none;
    height: 100%;
    padding: 1.5rem;
    border: 1px solid rgba(16, 32, 51, 0.08);
    border-radius: 1.5rem;
    background: #fff;
    box-shadow: 0 18px 38px rgba(19, 47, 74, 0.08);
}

.reference-map-card.active {
    display: flex;
    flex-direction: column;
}

.reference-gallery {
    display: grid;
    gap: 0.75rem;
    margin-top: 1rem;
}

.reference-gallery-main {
    width: 100%;
    border-radius: 1rem;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.reference-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(4.25rem, 1fr));
    gap: 0.5rem;
}

.reference-gallery-thumbs button {
    overflow: hidden;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 0.7rem;
    background: transparent;
    cursor: pointer;
}

.reference-gallery-thumbs button.active,
.reference-gallery-thumbs button:hover {
    border-color: var(--pb-ocean);
}

.reference-gallery-thumbs img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.media-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    background: rgba(3, 9, 17, 0.92);
    backdrop-filter: blur(8px);
}

.media-lightbox[hidden] {
    display: none;
}

.media-lightbox-stage {
    display: grid;
    min-width: 0;
    min-height: 0;
    place-items: center;
    margin: 0;
    text-align: center;
}

.media-lightbox-image {
    width: auto;
    max-width: calc(100vw - 5rem);
    height: auto;
    max-height: calc(100vh - 5rem);
    object-fit: contain;
    border-radius: 0.8rem;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.media-lightbox-count {
    margin-top: 0.8rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.9rem;
    font-weight: 700;
}

.media-lightbox-stage .media-lightbox-image[src*="-300x300"] {
    min-width: min(70vh, calc(100vw - 5rem));
    min-height: min(70vh, calc(100vw - 5rem));
    object-fit: contain;
}

.media-lightbox-close,
.media-lightbox-nav {
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font: inherit;
    cursor: pointer;
}

.media-lightbox-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 3rem;
    height: 3rem;
    font-size: 1.7rem;
}

.media-lightbox-nav {
    position: absolute;
    top: 50%;
    width: 3.5rem;
    height: 3.5rem;
    font-size: 2.6rem;
    transform: translateY(-50%);
}

.media-lightbox-prev {
    left: 1.25rem;
}

.media-lightbox-next {
    right: 1.25rem;
}

.media-lightbox-nav:hover,
.media-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.22);
}

.reference-location {
    color: var(--pb-ocean);
    font-weight: 800;
}

.reference-map-actions,
.reference-list-heading,
.pagination-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.reference-map-actions {
    justify-content: flex-end;
}

.reference-list-heading {
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.reference-list-heading span {
    color: var(--pb-muted);
    font-weight: 700;
}

.pagination-nav {
    justify-content: center;
    margin-top: 2rem;
}

.pagination-page {
    display: inline-grid;
    min-width: 2.75rem;
    min-height: 2.75rem;
    place-items: center;
    border: 1px solid rgba(20, 93, 160, 0.22);
    border-radius: 999px;
    color: var(--pb-ocean);
    font-weight: 800;
}

.pagination-page.active,
.pagination-page:hover {
    background: var(--pb-ocean);
    color: #fff;
}

.map-empty {
    display: grid;
    height: 100%;
    min-height: 460px;
    place-items: center;
    padding: 2rem;
    color: var(--pb-muted);
    text-align: center;
}

.admin-theme,
.admin-login-theme {
    margin: 0;
    color: var(--pb-ink);
    background: #eef3f7;
    font-family: "Manrope", sans-serif;
}

.admin-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    display: flex;
    width: 16rem;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #081321;
    color: #fff;
}

.admin-logo {
    color: #fff;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
}

.admin-nav {
    display: grid;
    gap: 0.4rem;
}

.admin-nav a,
.admin-logout {
    padding: 0.75rem 0.9rem;
    border-radius: 0.6rem;
    color: rgba(255, 255, 255, 0.76);
    font-weight: 700;
}

.admin-nav a:hover,
.admin-nav a.active,
.admin-logout:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.admin-logout {
    margin-top: auto;
}

.admin-main {
    min-height: 100vh;
    margin-left: 16rem;
    padding: 2rem;
}

.admin-page-heading {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.admin-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.admin-page-heading h1,
.login-card h1 {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.admin-stat,
.admin-panel,
.admin-table-wrap,
.admin-form,
.login-card,
.admin-alert {
    border: 1px solid rgba(16, 32, 51, 0.08);
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 18px 38px rgba(19, 47, 74, 0.08);
}

.admin-stat {
    display: block;
    padding: 1.5rem;
    color: var(--pb-ink);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.admin-stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 44px rgba(19, 47, 74, 0.12);
}

.admin-stat span,
.admin-table td span {
    display: block;
    color: var(--pb-muted);
}

.admin-stat strong {
    display: block;
    margin-top: 0.5rem;
    color: var(--pb-ocean);
    font-size: 2.5rem;
}

.admin-stat-alert strong {
    color: #b3401f;
}

.admin-panel {
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.admin-panel-heading {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.admin-panel-heading h2 {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.2rem;
}

.admin-panel .admin-table-wrap {
    border: 0;
    box-shadow: none;
}

.admin-empty {
    color: var(--pb-muted);
}

.admin-table-wrap {
    overflow: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(16, 32, 51, 0.08);
    text-align: left;
    vertical-align: top;
}

.admin-table th {
    color: var(--pb-muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.admin-actions {
    display: flex;
    gap: 0.75rem;
}

.admin-actions a,
.admin-actions button {
    border: 0;
    background: transparent;
    color: var(--pb-ocean);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.6rem;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.badge + .badge {
    margin-left: 0.35rem;
}

.badge-success {
    color: #1a7a4c;
    background: rgba(26, 122, 76, 0.12);
}

.badge-muted {
    color: var(--pb-muted);
    background: rgba(93, 107, 123, 0.12);
}

.badge-info {
    color: var(--pb-ocean);
    background: rgba(20, 93, 160, 0.1);
}

.badge-alert {
    color: #b3401f;
    background: rgba(179, 64, 31, 0.12);
}

.admin-table-thumb {
    display: block;
    width: 3rem;
    height: 3rem;
    border-radius: 0.6rem;
    object-fit: cover;
}

.admin-table-thumb-empty {
    background: linear-gradient(135deg, #e7eef4, #cfe4ee);
}

.admin-row-unread td {
    background: rgba(20, 93, 160, 0.04);
    font-weight: 700;
}

.admin-table-filter {
    width: 100%;
    max-width: 22rem;
    min-height: 2.75rem;
    padding: 0.65rem 0.9rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(16, 32, 51, 0.16);
    border-radius: 0.6rem;
    background: #fff;
    font: inherit;
}

.admin-nav-link-badged {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.admin-nav-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.4rem;
    height: 1.4rem;
    padding: 0 0.4rem;
    border-radius: 999px;
    background: #d9502b;
    color: #fff;
    font-size: 0.74rem;
    font-weight: 800;
}

.settings-jumpnav {
    position: sticky;
    top: 1rem;
    z-index: 5;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.9rem 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(16, 32, 51, 0.08);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 38px rgba(19, 47, 74, 0.08);
}

.settings-jumpnav a {
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    color: var(--pb-ocean);
    background: rgba(20, 93, 160, 0.08);
    font-size: 0.84rem;
    font-weight: 700;
}

.settings-jumpnav a:hover {
    background: var(--pb-ocean);
    color: #fff;
}

.admin-save-sticky {
    position: sticky;
    bottom: 1.5rem;
    z-index: 5;
    box-shadow: 0 18px 38px rgba(19, 47, 74, 0.24);
}

.admin-form {
    padding: 1.5rem;
}

.admin-form-section {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(16, 32, 51, 0.08);
}

.admin-form-section h2,
.admin-locale-panel h3 {
    margin: 0 0 1rem;
    font-family: "Plus Jakarta Sans", sans-serif;
    line-height: 1.2;
}

.admin-form-section h2 {
    font-size: 1.2rem;
}

.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.admin-form-section .admin-form-grid {
    margin-bottom: 0;
}

.admin-field-wide {
    grid-column: 1 / -1;
}

.admin-form label,
.login-card label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 800;
}

.admin-form input,
.admin-form textarea,
.admin-form select,
.login-card input {
    width: 100%;
    min-height: 2.8rem;
    padding: 0.75rem 0.85rem;
    border: 1px solid rgba(16, 32, 51, 0.16);
    border-radius: 0.6rem;
    background: #fff;
    color: var(--pb-ink);
    font: inherit;
}

.admin-form textarea {
    resize: vertical;
}

.admin-form .help-text,
.admin-form .form-text {
    color: var(--pb-muted);
    font-size: 0.85rem;
}

.admin-checks {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.admin-checks input {
    width: auto;
    min-height: auto;
}

.admin-gallery-field {
    grid-column: 1 / -1;
}

.admin-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
    gap: 1rem;
}

.admin-gallery-item {
    display: grid;
    gap: 0.55rem;
    padding: 0.75rem;
    border: 2px solid rgba(16, 32, 51, 0.08);
    border-radius: 0.8rem;
    background: #f8fbfd;
}

.admin-gallery-item.is-main {
    border-color: #1a7a4c;
    background: rgba(26, 122, 76, 0.05);
}

.admin-gallery-item img {
    width: 100%;
    border-radius: 0.6rem;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.admin-gallery-item label {
    display: flex;
    gap: 0.45rem;
    align-items: center;
    margin: 0;
    font-size: 0.86rem;
}

.admin-gallery-item input {
    width: auto;
    min-height: auto;
}

.admin-gallery-main-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.6rem;
    border-radius: 0.5rem;
    background: rgba(26, 122, 76, 0.12);
    color: #1a7a4c;
    font-size: 0.86rem;
    font-weight: 800;
    text-align: center;
}

.admin-gallery-set-main {
    padding: 0.5rem 0.6rem;
    border: 1px solid rgba(20, 93, 160, 0.26);
    border-radius: 0.5rem;
    background: #fff;
    color: var(--pb-ocean);
    font: inherit;
    font-size: 0.86rem;
    font-weight: 700;
    cursor: pointer;
}

.admin-gallery-set-main:hover {
    background: var(--pb-ocean);
    color: #fff;
}

.admin-gallery-remove {
    color: #b3401f;
}

.admin-locale-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 28rem), 1fr));
    gap: 1rem;
}

.admin-locale-panel {
    display: grid;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(16, 32, 51, 0.08);
    border-radius: 0.9rem;
    background: #f8fbfd;
}

.admin-locale-panel h3 {
    display: inline-flex;
    width: fit-content;
    padding: 0.3rem 0.55rem;
    border-radius: 0.5rem;
    background: rgba(20, 93, 160, 0.1);
    color: var(--pb-ocean);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
}

.admin-alert {
    margin-bottom: 1rem;
    padding: 0.9rem 1rem;
}

.admin-alert-success {
    border-color: rgba(25, 135, 84, 0.22);
    color: #11613d;
}

.admin-alert-error {
    border-color: rgba(217, 65, 65, 0.24);
    color: #9d2424;
}

.settings-group {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    scroll-margin-top: 5.5rem;
    border-bottom: 1px solid rgba(16, 32, 51, 0.08);
}

.settings-group h2 {
    margin-bottom: 1rem;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.25rem;
}

.admin-settings-list {
    display: grid;
    gap: 1rem;
}

.admin-setting-row {
    display: grid;
    grid-template-columns: minmax(10rem, 16rem) minmax(0, 1fr);
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(16, 32, 51, 0.08);
    border-radius: 0.9rem;
    background: #f8fbfd;
}

.admin-setting-meta strong {
    display: block;
    margin-bottom: 0.3rem;
}

.admin-setting-translations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
    gap: 1rem;
}

.login-shell {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 1.5rem;
}

.login-card {
    display: grid;
    width: min(100%, 28rem);
    gap: 1rem;
    padding: 2rem;
}

.legal-content {
    display: grid;
    gap: 0.7rem;
}

.legal-content h2 {
    margin-top: 1rem;
    margin-bottom: 0;
}

.legal-content p {
    color: var(--pb-muted);
    line-height: 1.8;
}

.cookie-banner {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 50;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    width: min(54rem, calc(100% - 2rem));
    padding: 1rem;
    border: 1px solid rgba(16, 32, 51, 0.1);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 48px rgba(19, 47, 74, 0.18);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner p {
    margin-bottom: 0.3rem;
    color: var(--pb-muted);
}

.cookie-banner a {
    color: var(--pb-ocean);
    font-weight: 800;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.wave-divider-footer {
    margin-bottom: 0;
    color: #0a1620;
}

.site-footer {
    padding: 1rem 0 2.5rem;
    background:
        linear-gradient(135deg, rgba(8, 19, 33, 0.98), rgba(9, 39, 48, 0.96)),
        radial-gradient(circle at 80% 10%, rgba(95, 200, 221, 0.18), transparent 20rem);
    color: #fff;
}

.footer-cta {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: center;
    padding: 1.4rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.4rem;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
        rgba(255, 255, 255, 0.06);
}

.footer-cta h2 {
    margin: 0;
    max-width: 44rem;
    font-family: "Plus Jakarta Sans", sans-serif;
    line-height: 1.15;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
}

.footer-logo {
    height: 32px;
    margin-bottom: 1rem;
}

.footer-title {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1.2rem;
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.68);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.footer-title::before {
    content: "";
    display: inline-block;
    width: 1.4rem;
    height: 1px;
    background: currentColor;
    opacity: 0.6;
}

.footer-links {
    display: grid;
    gap: 0.75rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.footer-icon {
    flex-shrink: 0;
    width: 1.1rem;
    height: 1.1rem;
    color: #5fc8dd;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.92rem;
}

@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 4rem;
    }

    .hero-grid,
    .product-tree-card,
    .content-layout,
    .reference-map-shell,
    .contact-layout-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-illustration-frame {
        max-width: 20rem;
    }

    .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .navbar-panel {
        display: none;
        width: 100%;
        margin-left: 0;
    }

    .navbar-panel.open {
        display: block;
    }

    .navbar-nav {
        display: grid;
        gap: 0.2rem;
        padding-top: 0.5rem;
    }

    .nav-link {
        display: flex;
        padding: 0.85rem 0;
    }

    .navbar-nav .btn {
        width: 100%;
        margin-top: 0.5rem;
    }

    .admin-sidebar {
        position: static;
        width: auto;
    }

    .admin-main {
        margin-left: 0;
    }

    .admin-form-grid,
    .admin-locale-grid,
    .admin-setting-row,
    .admin-setting-translations,
    .contact-form-grid,
    .admin-stats,
    .cookie-banner {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .contact-field-wide {
        grid-column: auto;
    }

    .footer-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    .hero-illustration-frame {
        max-width: 15rem;
    }

    .hero-stats-float {
        flex-direction: column;
    }

    .stat-pill {
        flex: none;
    }

    .section-block,
    .cta-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .page-hero {
        padding: 3.5rem 0 4rem;
    }

    .cta-panel,
    .contact-banner,
    .service-card,
    .contact-card {
        padding: 1.5rem;
    }

    .media-lightbox {
        padding: 1rem;
    }

    .media-lightbox-image {
        max-width: calc(100vw - 2rem);
        max-height: calc(100vh - 2rem);
    }

    .media-lightbox-stage .media-lightbox-image[src*="-300x300"] {
        min-width: min(64vh, calc(100vw - 2rem));
        min-height: min(64vh, calc(100vw - 2rem));
    }

    .media-lightbox-nav {
        width: 2.6rem;
        height: 2.6rem;
    }

    .media-lightbox-prev {
        left: 0.5rem;
    }

    .media-lightbox-next {
        right: 0.5rem;
    }
}

@media (min-width: 576px) {
    .flex-sm-row {
        flex-direction: row;
    }

    .col-sm-6 {
        width: 50%;
    }
}

@media (min-width: 768px) {
    .col-md-6 {
        width: 50%;
    }
}

@media (min-width: 992px) {
    .flex-lg-row {
        flex-direction: row;
    }

    .col-lg-3 {
        width: 25%;
    }

    .col-lg-4 {
        width: 33.333333%;
    }

    .col-lg-5 {
        width: 41.666667%;
    }

    .col-lg-6 {
        width: 50%;
    }

    .col-lg-7 {
        width: 58.333333%;
    }

    .row-cols-lg-3 > * {
        width: 33.333333%;
    }
}

@media (min-width: 1200px) {
    .col-xl-3 {
        width: 25%;
    }

    .col-xl-4 {
        width: 33.333333%;
    }
}
