/* Χωρίς κάτω-οριζόντια scrollbar: απορρίπτει overflow από 100vw / full-bleed blocks */
html {
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #132a45;
}

/* border-box: το max-width περιλαμβάνει padding (αλλιώς 1100px + 2rem > viewport → οριζόντιο scroll) */
.container {
    box-sizing: border-box;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    min-width: 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.75rem 1rem 0.55rem;
}

.site-header {
    position: relative;
    z-index: 200;
}

.site-header__menu-btn {
    display: none;
    width: 2.5rem;
    height: 2.5rem;
    border: 0;
    background: transparent;
    cursor: pointer;
    color: #2a2e6b;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
    border-radius: 6px;
    flex-direction: column;
    gap: 0.3rem;
}

.site-header__menu-btn:hover {
    background: rgba(42, 46, 107, 0.08);
}

.site-header__menu-line {
    display: block;
    width: 1.35rem;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
}

.site-header__trailing {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 0.65rem;
}

.brand {
    flex: 0 0 auto;
}

.brand-logo-link {
    display: inline-flex;
    align-items: center;
}

.brand-logo-image {
    display: block;
    max-width: 240px;
    height: auto;
}

.brand-sub {
    font-size: 0.8rem;
    opacity: 0.85;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    font-size: 0.9rem;
}

.main-nav a,
.lang-switch a {
    text-decoration: none;
    color: #333;
}

.main-nav a {
    position: relative;
    padding-bottom: 2px;
}

.main-nav-primary a {
    font-weight: 500;
    font-size: 0.92rem;
}

.main-nav-secondary {
    justify-content: center;
    font-size: 0.9rem;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #f9b300;
    transition: width 0.2s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Nested header menus (WordPress-style from admin) */
.main-nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu-li {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.main-nav-primary .nav-menu-li.has-children > a {
    padding-right: 0.35rem;
}

.main-nav-primary .nav-menu-sub {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 12rem;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.45rem 0;
    margin: 0.15rem 0 0;
    list-style: none;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
    z-index: 80;
}

.main-nav-primary .nav-menu-li.has-children:hover > .nav-menu-sub,
.main-nav-primary .nav-menu-li.has-children:focus-within > .nav-menu-sub {
    display: flex;
}

.main-nav-primary .nav-menu-sub .nav-menu-li > a {
    display: block;
    padding: 0.35rem 0.85rem;
    white-space: nowrap;
    font-weight: 500;
}

.main-nav-primary .nav-menu-sub .nav-menu-sub {
    top: 0;
    left: 100%;
    margin-top: 0;
    margin-left: 0.15rem;
}

.main-nav-list-secondary {
    justify-content: flex-start;
}

.main-nav-list-secondary > .nav-menu-li > a {
    padding: 0 0.75rem;
    border-left: 1px solid #999;
    font-size: 0.9rem;
}

.main-nav-list-secondary > .nav-menu-li:first-child > a {
    border-left: none;
    padding-left: 0;
}

.main-nav-secondary .nav-menu-sub {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 11rem;
    flex-direction: column;
    padding: 0.35rem 0;
    margin: 0.1rem 0 0;
    list-style: none;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    z-index: 70;
}

.main-nav-secondary .nav-menu-li.has-children:hover > .nav-menu-sub,
.main-nav-secondary .nav-menu-li.has-children:focus-within > .nav-menu-sub {
    display: flex;
}

.lang-switch {
    display: flex;
    gap: 0.4rem;
    font-size: 0.85rem;
}

.lang-switch .active {
    font-weight: 700;
    text-decoration: underline;
}

/* Mobile: off-canvas menu (hamburger) — αποκρύπτεται πάνω από 900px */
@media (min-width: 901px) {
    .site-mobile-nav {
        display: none !important;
    }
}

@media (max-width: 900px) {
    .site-header {
        position: sticky;
        top: 0;
        z-index: 200;
        background: #fff;
        box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
    }

    .header-inner {
        display: grid;
        grid-template-columns: 2.5rem minmax(0, 1fr) auto;
        align-items: center;
        column-gap: 0.35rem;
        row-gap: 0.5rem;
        padding: 0.6rem 1rem 0.5rem;
    }

    .site-header__menu-btn {
        display: inline-flex;
        align-self: center;
        grid-column: 1;
    }

    .brand {
        grid-column: 2;
        min-width: 0;
        justify-self: center;
    }

    .main-nav--bar {
        display: none !important;
    }

    .subnav-bar {
        display: none !important;
    }

    .header-auth--bar {
        display: none !important;
    }

    .site-header__trailing {
        grid-column: 3;
        align-self: center;
        justify-self: end;
    }

    .brand-logo-image {
        max-width: 200px;
    }
}

/* Off-canvas navigation panel */
@media (max-width: 900px) {
    .site-mobile-nav {
        position: fixed;
        inset: 0;
        z-index: 1000;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease;
    }

    .site-mobile-nav.is-open {
        opacity: 1;
        pointer-events: auto;
    }

    .site-mobile-nav__backdrop {
        position: absolute;
        inset: 0;
        background: rgba(15, 30, 45, 0.5);
    }

    .site-mobile-nav__panel {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        z-index: 1;
        width: min(19rem, 88vw);
        max-width: 100%;
        display: flex;
        flex-direction: column;
        background: #fff;
        box-shadow: 6px 0 28px rgba(0, 0, 0, 0.18);
        transform: translateX(-105%);
        transition: transform 0.28s ease;
    }

    .site-mobile-nav.is-open .site-mobile-nav__panel {
        transform: translateX(0);
    }

    .site-mobile-nav__head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.65rem 0.85rem;
        border-bottom: 1px solid #ddd;
        flex-shrink: 0;
    }

    .site-mobile-nav__title {
        font-weight: 700;
        color: #2a2e6b;
        font-size: 1.05rem;
    }

    .site-mobile-nav__close {
        border: 0;
        background: transparent;
        color: #2a2e6b;
        font-size: 1.5rem;
        line-height: 1;
        cursor: pointer;
        width: 2.25rem;
        height: 2.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 6px;
    }

    .site-mobile-nav__close:hover {
        background: #efefef;
    }

    .site-mobile-nav__content {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0.4rem 0.85rem 1rem;
        display: flex;
        flex-direction: column;
        gap: 0.1rem;
    }

    .site-mobile-nav__label {
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: #6a7380;
        font-weight: 600;
        margin: 0.6rem 0 0.35rem;
    }

    .main-nav--drawer {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .main-nav--drawer > a {
        padding: 0.65rem 0.25rem 0.65rem 0;
        border-bottom: 1px solid #eceef1;
    }

    .main-nav--drawer > a:last-of-type {
        border-bottom: 0;
    }

    .site-mobile-nav .main-nav--drawer a::after {
        display: none;
    }

    .site-mobile-nav .main-nav-list--drawer {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .site-mobile-nav .main-nav-list--drawer .nav-menu-li {
        border-bottom: 1px solid #eceef1;
    }

    .site-mobile-nav .main-nav-list--drawer .nav-menu-li > a {
        display: block;
        padding: 0.65rem 0.25rem;
        position: static;
    }

    .site-mobile-nav .main-nav-list--drawer .nav-menu-li > a::after {
        display: none;
    }

    .site-mobile-nav .main-nav-list--drawer .nav-menu-sub {
        position: static;
        display: flex;
        flex-direction: column;
        gap: 0;
        margin: 0 0 0.35rem 0.75rem;
        padding: 0;
        list-style: none;
        background: #f5f6f8;
        border: 0;
        border-radius: 6px;
        box-shadow: none;
    }

    .site-mobile-nav .main-nav-list--drawer .nav-menu-sub .nav-menu-li {
        border-bottom: 0;
    }

    .site-mobile-nav .main-nav-list--drawer .nav-menu-sub .nav-menu-li > a {
        padding: 0.4rem 0.65rem;
        font-size: 0.9rem;
    }

    .site-mobile-nav .main-nav-list--drawer.main-nav-list-secondary .nav-menu-li > a,
    .site-mobile-nav .main-nav--drawer.main-nav--drawer-secondary a {
        border-left: 0 !important;
        padding-left: 0.25rem;
    }

    .site-mobile-nav .main-nav-list--drawer.main-nav-list-secondary > .nav-menu-li > a,
    .site-mobile-nav .main-nav-list--drawer .nav-menu-li .nav-menu-sub a {
        border-left: 0;
    }

    .site-mobile-nav .header-auth--drawer {
        margin-top: 0.6rem;
        padding-top: 0.4rem;
        border-top: 1px solid #eceef1;
    }

    .site-mobile-nav .header-auth--drawer a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: auto;
        padding: 0.32rem 0.7rem;
        font-size: 0.8rem;
        font-weight: 600;
    }
}

body.site-mobile-nav-open {
    overflow: hidden;
}

body.site-mobile-nav-open .back-to-top {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none;
}

body.admarel-contact-open {
    overflow: hidden;
}

body.admarel-contact-open .back-to-top {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none;
}

.admarel-contact__trigger {
    position: fixed;
    z-index: 260;
    right: max(0.9rem, env(safe-area-inset-right, 0px));
    bottom: calc(max(0.9rem, env(safe-area-inset-bottom, 0px)) + 3.4rem);
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    max-width: min(19rem, calc(100vw - 1.8rem));
    border: 0;
    border-radius: 999px;
    padding: 0.72rem 1rem 0.72rem 0.78rem;
    background: linear-gradient(135deg, #2a2e6b 0%, #1f7db8 100%);
    color: #fff;
    box-shadow: 0 12px 34px rgba(22, 42, 83, 0.24);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.admarel-contact__trigger:hover,
.admarel-contact__trigger:focus-visible {
    transform: translateY(-2px);
    filter: brightness(1.03);
    box-shadow: 0 16px 40px rgba(22, 42, 83, 0.3);
    outline: none;
}

.admarel-contact__trigger:focus-visible {
    box-shadow: 0 0 0 3px #fff, 0 0 0 6px rgba(42, 46, 107, 0.4);
}

.admarel-contact__trigger-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
}

.admarel-contact__trigger-icon svg {
    width: 1.15rem;
    height: 1.15rem;
    fill: currentColor;
}

.admarel-contact__overlay {
    position: fixed;
    inset: 0;
    z-index: 480;
    background: rgba(9, 18, 34, 0.58);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.admarel-contact__dialog {
    position: fixed;
    inset: 0;
    z-index: 490;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 3vw, 2rem);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}

.admarel-contact.is-open .admarel-contact__overlay,
.admarel-contact.is-open .admarel-contact__dialog {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.admarel-contact__panel {
    position: relative;
    width: min(760px, 100%);
    max-height: min(90vh, 780px);
    overflow: auto;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 28px 80px rgba(8, 18, 36, 0.35);
}

.admarel-contact__panel::before {
    content: '';
    display: block;
    height: 7px;
    background: linear-gradient(90deg, #2a2e6b 0%, #1f7db8 58%, #f9b300 100%);
}

.admarel-contact__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border: 0;
    border-radius: 999px;
    background: #eef2f7;
    color: #2a2e6b;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
}

.admarel-contact__close:hover,
.admarel-contact__close:focus-visible {
    background: #dde7f3;
    outline: none;
}

.admarel-contact__intro,
.admarel-contact__form,
.admarel-contact__notice {
    margin-left: clamp(1rem, 4vw, 2rem);
    margin-right: clamp(1rem, 4vw, 2rem);
}

.admarel-contact__intro {
    padding-top: 1.65rem;
    padding-right: 2.4rem;
}

.admarel-contact__eyebrow {
    margin: 0 0 0.35rem;
    color: #1f7db8;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admarel-contact__intro h2 {
    margin: 0;
    color: #2a2e6b;
    font-size: clamp(1.35rem, 3vw, 2rem);
    line-height: 1.15;
}

.admarel-contact__intro p:last-child {
    max-width: 38rem;
    margin: 0.65rem 0 0;
    color: #586272;
    line-height: 1.6;
}

.admarel-contact__notice {
    margin-top: 1rem;
    padding: 0.8rem 0.95rem;
    border-radius: 12px;
    font-size: 0.93rem;
    line-height: 1.45;
}

.admarel-contact__notice--success {
    background: #ecfdf3;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.admarel-contact__notice--error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.admarel-contact__form {
    padding: 1.2rem 0 clamp(1rem, 4vw, 2rem);
}

.admarel-contact__honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

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

.admarel-contact__field {
    display: grid;
    gap: 0.35rem;
    color: #25324a;
    font-size: 0.9rem;
    font-weight: 700;
}

.admarel-contact__field--wide {
    grid-column: 1 / -1;
}

.admarel-contact__field input,
.admarel-contact__field textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #d4dce7;
    border-radius: 12px;
    background: #f8fafc;
    color: #132a45;
    font: inherit;
    font-weight: 400;
    padding: 0.78rem 0.85rem;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.admarel-contact__field textarea {
    resize: vertical;
}

.admarel-contact__field input:focus,
.admarel-contact__field textarea:focus {
    border-color: #1f7db8;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(31, 125, 184, 0.14);
}

.admarel-contact__field small {
    color: #b91c1c;
    font-weight: 600;
}

.admarel-contact__radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    padding: 0;
    border: 0;
}

.admarel-contact__radio-group legend {
    width: 100%;
    margin-bottom: 0.35rem;
    font-weight: 700;
}

.admarel-contact__radio-group label {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.62rem 0.8rem;
    border: 1px solid #d4dce7;
    border-radius: 999px;
    background: #f8fafc;
    cursor: pointer;
    font-weight: 700;
}

.admarel-contact__radio-group input {
    width: auto;
    accent-color: #2a2e6b;
}

.admarel-contact__captcha {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-start;
    margin-top: 0.15rem;
    overflow: auto;
}

.admarel-contact__submit {
    width: 100%;
    margin-top: 1rem;
    border: 0;
    border-radius: 999px;
    background: #2a2e6b;
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 800;
    padding: 0.9rem 1.2rem;
    box-shadow: 0 10px 24px rgba(42, 46, 107, 0.18);
}

.admarel-contact__submit:hover,
.admarel-contact__submit:focus-visible {
    background: #202452;
    outline: none;
}

@media (max-width: 640px) {
    .admarel-contact__trigger {
        left: max(0.9rem, env(safe-area-inset-left, 0px));
        right: max(0.9rem, env(safe-area-inset-right, 0px));
        justify-content: center;
        bottom: calc(max(0.9rem, env(safe-area-inset-bottom, 0px)) + 3.25rem);
    }

    .admarel-contact__dialog {
        align-items: flex-end;
        padding: 0.75rem;
    }

    .admarel-contact__panel {
        max-height: 88vh;
        border-radius: 18px;
    }

    .admarel-contact__grid {
        grid-template-columns: 1fr;
    }
}

/* Back to top (δημόσια σελίδα — κινητό & desktop) */
.back-to-top {
    position: fixed;
    z-index: 250;
    right: max(0.9rem, env(safe-area-inset-right, 0px));
    bottom: max(0.9rem, env(safe-area-inset-bottom, 0px));
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.65rem;
    height: 2.65rem;
    padding: 0;
    border: 1px solid rgba(42, 46, 107, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: #2a2e6b;
    box-shadow: 0 2px 12px rgba(15, 30, 45, 0.1);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, box-shadow 0.2s ease, background 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.back-to-top.is-visible {
    opacity: 0.92;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
    opacity: 1;
    background: #fff;
    box-shadow: 0 3px 16px rgba(15, 30, 45, 0.15);
    outline: none;
}

.back-to-top:focus-visible {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(42, 46, 107, 0.45);
}

.back-to-top__icon {
    display: block;
    margin: 0;
}

@media (min-width: 901px) {
    .back-to-top {
        width: 2.4rem;
        height: 2.4rem;
    }

    .back-to-top .back-to-top__icon {
        width: 18px;
        height: 18px;
    }
}

.hero {
    position: relative;
    background: linear-gradient(135deg, #07396f 0%, #185c9e 100%);
    color: #fff;
    padding: 5.5rem 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 17, 33, 0.72) 0%, rgba(3, 17, 33, 0.45) 42%, rgba(3, 17, 33, 0.16) 100%);
    z-index: 1;
}

.hero.is-home {
    background: #0c2743;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.hero-slide.is-active {
    opacity: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    min-height: 360px;
}

.hero-text h1 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(2.2rem, 5vw, 4.3rem);
    line-height: 1.03;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-text p {
    margin-top: 0.7rem;
    max-width: 760px;
    font-size: 1.15rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-pill {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    padding: 0.6rem 1.4rem;
    font-size: 0.85rem;
    background: rgba(5, 21, 40, 0.35);
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 22px;
    z-index: 2;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.hero-dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

.hero-dot.is-active {
    background: #1a62b5;
}

.hero-menu {
    background: #ffffff;
}

.hero-menu-inner {
    padding: 0.7rem 0;
}

.subnav-bar {
    background: #efefef;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.main-nav-secondary {
    justify-content: flex-start;
}

/* Fallback secondary nav: direct links when DB menu is empty */
.main-nav-secondary > a {
    padding: 0 0.75rem;
    border-left: 1px solid #999;
    font-size: 0.9rem;
}

.main-nav-secondary > a:first-of-type {
    border-left: none;
    padding-left: 0;
}

@media (max-width: 900px) {
    .hero {
        padding: 4rem 0;
    }

    .hero-inner {
        min-height: 260px;
    }

    .hero-text h1 {
        font-size: clamp(1.9rem, 7vw, 3rem);
    }

    .about-feature {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .about-feature-image {
        min-height: 320px;
    }

    .about-feature-content {
        padding: 2rem 1.25rem;
    }

    .logos-grid-primary {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
    }

    .logos-grid-secondary {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
    }
}

.section {
    padding: 3rem 1rem;
}

.products-showcase {
    position: relative;
    background: #f2f4f5;
    overflow: hidden;
}

.products-overlay {
    position: absolute;
    left: -120px;
    top: 0;
    width: 320px;
    height: 100%;
    opacity: 0.28;
    background: radial-gradient(circle at 55% 50%, rgba(160, 170, 177, 0.35) 0%, rgba(160, 170, 177, 0.12) 45%, rgba(160, 170, 177, 0) 72%);
    pointer-events: none;
}

.products-inner {
    position: relative;
    z-index: 1;
    padding: 4rem 1rem 3.2rem;
    text-align: center;
}

.products-inner h2 {
    margin: 0;
    font-size: 2rem;
    color: #30343a;
}

.products-subtitle {
    margin: 0.8rem auto 2.2rem;
    max-width: 640px;
    color: #5a626b;
    font-size: 0.95rem;
}

.logos-grid {
    display: grid;
    gap: 1.6rem 2.1rem;
    justify-items: center;
    align-items: center;
}

.logos-grid img {
    max-width: 165px;
    max-height: 55px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: saturate(0.98);
}

.logos-grid-primary {
    grid-template-columns: repeat(5, minmax(110px, 1fr));
}

.products-inner h3 {
    margin: 3.5rem 0 1.6rem;
    font-size: 1.95rem;
    color: #3a3f45;
    font-weight: 700;
}

.logos-grid-secondary {
    grid-template-columns: repeat(6, minmax(95px, 1fr));
}

.about-feature {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
    min-height: 620px;
}

.about-feature-image {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.about-feature-content {
    background: #dbe7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.about-feature-inner {
    max-width: 420px;
}

.about-feature-inner h2 {
    margin: 0 0 2rem;
    text-align: center;
    font-size: 2rem;
    color: #1b3548;
}

.about-feature-inner .lead {
    font-size: 1rem;
    line-height: 1.9;
    color: #233d4d;
}

.about-details-section {
    background: #f6f8fb;
    padding: 3.2rem 0 3.6rem;
}

.about-details-inner {
    max-width: 900px;
}

.about-details-inner h2 {
    margin: 0 0 1.1rem;
    text-align: center;
    color: #2a2e6b;
    font-size: 2rem;
}

.about-details-inner p {
    margin: 0 0 1rem;
    color: #2e3a45;
    font-size: 1rem;
    line-height: 1.8;
}

.about-details-inner p:last-child {
    margin-bottom: 0;
}

.section-light {
    background: #f5f7fb;
}

.section-muted {
    background: #eef2f7;
}

.section h2 {
    margin-top: 0;
    font-size: 1.5rem;
}

.lead {
    font-size: 1rem;
    line-height: 1.6;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.card {
    border: 1px solid #d7dce2;
    border-radius: 8px;
    padding: 1rem;
    background: #fff;
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.04);
}

.service-card h3 {
    margin: 0;
    font-size: 0.98rem;
}

.contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-list li {
    margin: 0.4rem 0;
}

.site-footer {
    background: #efefef;
    color: #2f3440;
    padding-top: 2.6rem;
    border-top: 1px solid #d9d9d9;
    font-family: inherit;
}

/* Ίδιο οριζόντιο padding (newsletter, accordions, copyright) — συμπλήρωση .container + safe area */
.site-footer .container {
    box-sizing: border-box;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
}

.site-footer a {
    color: #2a2e6b;
    text-decoration: none;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr minmax(260px, 380px);
    gap: 1.4rem;
    align-items: center;
    padding-bottom: 2rem;
}

.footer-newsletter-copy h3,
.footer-title {
    margin: 0 0 0.45rem;
    font-size: 1.6rem;
    line-height: 1.25;
    font-weight: 700;
    color: #2a2e6b;
}

.footer-newsletter-copy p {
    margin: 0;
    color: #505762;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-newsletter-form {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #d3d8df;
    border-radius: 999px;
    padding: 0.3rem;
}

.footer-newsletter-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.footer-newsletter-form input {
    flex: 1;
    border: 0;
    background: transparent;
    padding: 0.7rem 0.95rem;
    font-size: 0.92rem;
    outline: none;
    color: #1f2130;
    font-family: inherit;
}

.footer-newsletter-form button {
    border: 0;
    background: #2a2e6b;
    color: #fff;
    border-radius: 999px;
    padding: 0.65rem 1.1rem;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: inherit;
}

.footer-newsletter-status {
    grid-column: 1 / -1;
    margin: 0.6rem 0 0;
    color: #166534;
    font-size: 0.88rem;
    font-weight: 600;
}

.footer-newsletter-status--error {
    color: #b91c1c;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 1.4rem;
    padding: 1.7rem 0 2rem;
}

.footer-brand h4 {
    margin: 0 0 0.65rem;
    font-size: 1.35rem;
    line-height: 1.3;
    color: #2a2e6b;
    font-weight: 700;
}

.footer-accordion__title--brand {
    margin: 0;
    font-size: 1.35rem;
    line-height: 1.3;
    color: #2a2e6b;
    font-weight: 700;
}

.footer-brand p,
.footer-col--brand .footer-accordion__inner p {
    margin: 0;
    color: #4e5662;
    font-size: 0.95rem;
    line-height: 1.65;
}

.footer-accordion {
    border: 0;
    margin: 0;
    padding: 0;
}

.footer-accordion__summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-padding-start: 0;
    padding-inline-start: 0;
    padding-inline-end: 0;
    margin: 0;
}

.footer-accordion__summary::-webkit-details-marker,
.footer-accordion__summary::marker {
    display: none;
    content: '';
}

.footer-accordion__title {
    font-size: 1.05rem;
    line-height: 1.35;
    color: #2a2e6b;
    font-weight: 700;
    margin: 0;
}

.footer-accordion__title--brand {
    display: block;
    margin: 0;
    font-size: 1.35rem;
    line-height: 1.3;
}

.footer-accordion__inner {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 0 0 0.15rem;
    margin-top: 0.7rem;
}

.footer-accordion__caret {
    flex-shrink: 0;
    color: #2a2e6b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    line-height: 0;
}

.footer-accordion__caret svg {
    display: block;
    fill: currentColor;
}

details.footer-accordion[open] .footer-accordion__caret {
    transform: rotate(180deg);
}

@media (min-width: 701px) {
    .footer-accordion__summary {
        cursor: default;
        padding: 0;
    }

    .footer-accordion__caret {
        display: none;
    }

    .footer-accordion__inner {
        padding: 0;
        margin-top: 0.7rem;
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-col a {
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    list-style: none outside;
    margin: 0;
    padding: 0;
}

.footer-nav-list li {
    list-style: none;
}

.footer-nav-list li::marker {
    content: '';
}

.footer-nav-list--sub {
    gap: 0.45rem;
    margin-top: 0.45rem;
    padding-left: 1rem;
}

.footer-col--links a {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    line-height: 1.45;
}

.footer-col--links a::before {
    content: '';
    display: block;
    flex-shrink: 0;
    width: 0.4rem;
    height: 0.4rem;
    border-top: 2px solid #2a2e6b;
    border-right: 2px solid #2a2e6b;
    transform: rotate(45deg);
    margin-top: 0.04rem;
}

.footer-col--links a:hover::before {
    border-top-color: #0b325a;
    border-right-color: #0b325a;
}

.footer-col--contact .footer-contact-meta {
    margin-top: 0.1rem;
}

.footer-col--contact .page-contact-split__company {
    color: #1e3d57;
    font-size: 0.95rem;
}

.footer-col--contact .page-contact-split__icon {
    color: #2a2e6b;
}

.footer-col--contact .page-contact-split__meta a.page-contact-split__row {
    color: #2a2e6b;
    font-weight: 600;
}

.footer-col--contact .page-contact-split__meta a.page-contact-split__row:hover {
    color: #0b325a;
}

.footer-bottom {
    border-top: 1px solid #d2d7de;
    padding: 1rem 0 1.15rem;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-bottom small {
    color: #5b6370;
    font-size: 0.86rem;
    line-height: 1.5;
}

.footer-copyright,
.footer-goldensites-credit {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.footer-goldensites-credit a {
    display: inline-flex;
    align-items: center;
    color: #5b6370;
    text-decoration: none;
}

.footer-goldensites-credit a:hover {
    color: #0b325a;
}

.footer-goldensites-logo {
    display: block;
    width: 120px;
    height: 25px;
    object-fit: contain;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
}

.footer-social a {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid #2a2e6b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #2a2e6b;
}

@media (max-width: 1000px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-col--brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 700px) {
    .site-footer {
        padding-top: 2rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        padding-bottom: 1.4rem;
    }

    .footer-newsletter-copy h3,
    .footer-title {
        font-size: 1.55rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        padding-top: 1.2rem;
        gap: 0;
    }

    .footer-accordion {
        border-bottom: 1px solid #d2d7de;
    }

    .footer-accordion__summary {
        padding: 0.85rem 0;
    }

    .footer-accordion__inner {
        padding: 0 0 0.9rem 0;
    }

    .footer-main .footer-col:last-child .footer-accordion {
        border-bottom: 0;
    }

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

.services-showcase {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.services-showcase-overlay {
    background: rgba(15, 31, 45, 0.45);
    padding: 3.2rem 0;
}

.services-showcase-inner h2 {
    margin: 0 0 1.3rem;
    text-align: center;
    color: #fff;
    font-size: 2.1rem;
}

.services-grid-pro {
    display: grid;
    grid-template-columns: repeat(4, minmax(190px, 1fr));
    border: 1px solid rgba(0, 0, 0, 0.28);
}

.service-pro-card {
    background: var(--svc-card-bg, rgba(255, 255, 255, 0.85));
    border-right: 1px solid rgba(0, 0, 0, 0.24);
    border-bottom: 1px solid rgba(0, 0, 0, 0.24);
    padding: var(--svc-card-pt, 1rem) var(--svc-card-pr, 1rem) var(--svc-card-pb, 1.15rem) var(--svc-card-pl, 1rem);
    min-height: 188px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.45rem;
    text-align: center;
}

.service-pro-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111;
    margin-bottom: 0.1rem;
}

.service-pro-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.service-pro-card:nth-child(4n) {
    border-right: none;
}

.service-pro-card:nth-last-child(-n + 4) {
    border-bottom: none;
}

.service-pro-card h3 {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    color: #111;
}

.service-pro-card p {
    margin: 0;
    font-size: 0.87rem;
    line-height: 1.5;
    color: #1f252a;
}

@media (max-width: 900px) {
    .logos-grid-primary {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
    }

    .logos-grid-secondary {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
    }

    .services-grid-pro {
        grid-template-columns: repeat(2, minmax(160px, 1fr));
    }

    .service-pro-card {
        min-height: 180px;
    }

    .service-pro-card:nth-child(2n) {
        border-right: none;
    }

    .service-pro-card:nth-last-child(-n + 4) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.24);
    }

    .service-pro-card:nth-last-child(-n + 2) {
        border-bottom: none;
    }
}

@media (max-width: 640px) {
    .services-grid-pro {
        grid-template-columns: 1fr;
    }

    .service-pro-card {
        border-right: none !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.24) !important;
    }

    .service-pro-card:last-child {
        border-bottom: none !important;
    }
}

/* Page builder: services — full viewport width (escapes narrow page-builder-inner) */
.page-block--services-bleed {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    max-width: none;
}

/* Page builder: services grid — variable columns, gap-based cell borders */
.page-block--services.services-showcase--no-bg {
    background-color: #1a2d3d;
    background-image: none;
}

.page-block--services .page-block--services__grid {
    --svc-cols: 4;
    display: grid;
    grid-template-columns: repeat(var(--svc-cols), minmax(0, 1fr));
    gap: 1px;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(0, 0, 0, 0.28);
}

.page-block--services .page-block--services__grid .service-pro-card {
    border: none;
    margin: 0;
    min-height: 188px;
}

.page-block--services .service-pro-icon--img img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
}

@media (max-width: 900px) {
    .page-block--services .page-block--services__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .page-block--services .page-block--services__grid {
        grid-template-columns: 1fr;
    }
}

.approvals-showcase {
    position: relative;
    background: #f2f3f4;
    overflow: hidden;
    padding: 4.4rem 0 4.8rem;
}

.approvals-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.22;
    background:
        radial-gradient(circle at 12% 20%, rgba(160, 168, 175, 0.2) 0%, rgba(160, 168, 175, 0) 36%),
        radial-gradient(circle at 85% 35%, rgba(160, 168, 175, 0.2) 0%, rgba(160, 168, 175, 0) 34%),
        radial-gradient(circle at 50% 92%, rgba(160, 168, 175, 0.2) 0%, rgba(160, 168, 175, 0) 33%);
    pointer-events: none;
}

.approvals-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.approvals-inner h2 {
    margin: 0;
    font-size: 2rem;
    color: #333a40;
}

.approvals-subtitle {
    margin: 0.8rem auto 2.2rem;
    max-width: 820px;
    color: #4d555d;
    line-height: 1.7;
    font-size: 0.95rem;
}

.approvals-logos {
    display: grid;
    grid-template-columns: repeat(7, minmax(95px, 1fr));
    gap: 1.3rem 1.6rem;
    align-items: center;
    justify-items: center;
}

.approvals-logos img {
    max-width: 118px;
    max-height: 58px;
    width: auto;
    height: auto;
    object-fit: contain;
}

@media (max-width: 900px) {
    .approvals-logos {
        grid-template-columns: repeat(4, minmax(100px, 1fr));
    }
}

@media (max-width: 640px) {
    .approvals-showcase {
        padding: 3.2rem 0 3.6rem;
    }

    .approvals-logos {
        grid-template-columns: repeat(2, minmax(110px, 1fr));
    }
}

.newbuilding-feature {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
    min-height: 620px;
}

.newbuilding-image {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.newbuilding-content {
    background: #dbe7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.newbuilding-inner {
    max-width: 430px;
}

.newbuilding-inner h2 {
    margin: 0 0 1.7rem;
    text-align: center;
    font-size: 2rem;
    color: #253d4f;
}

.newbuilding-inner p {
    margin: 0 0 1.25rem;
    color: #2c4454;
    line-height: 1.85;
    font-size: 0.96rem;
}

.newbuilding-inner p:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .newbuilding-feature {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .newbuilding-image {
        min-height: 320px;
    }

    .newbuilding-content {
        padding: 2rem 1.25rem;
    }
}

.enavigation-section {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.enavigation-overlay {
    background: rgba(255, 255, 255, 0.15);
    padding: 4.6rem 0;
}

.enavigation-inner {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(380px, 1fr);
    gap: 3rem;
    align-items: start;
}

.enavigation-intro {
    padding-top: 3.1rem;
    color: #1f2c3a;
}

.enavigation-intro h2 {
    margin: 0;
    font-size: 3rem;
    line-height: 1.05;
}

.enavigation-intro h3 {
    margin: 0.35rem 0 1.8rem;
    font-size: 1.95rem;
    color: #1f3f6f;
}

.enavigation-intro h4 {
    margin: 0 0 0.5rem;
    font-size: 1.55rem;
    font-weight: 700;
}

.enavigation-intro p {
    margin: 0;
    font-size: 1.18rem;
}

.enavigation-accordion {
    background: rgba(243, 243, 243, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.enav-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.enav-item:last-child {
    border-bottom: none;
}

.enav-trigger {
    width: 100%;
    display: flex;
    gap: 0.65rem;
    align-items: center;
    border: 0;
    background: transparent;
    color: #222b34;
    padding: 0.95rem 1rem;
    text-align: left;
    font-size: 1.12rem;
    cursor: pointer;
}

.enav-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #303841;
    color: #fff;
    font-size: 0.9rem;
    line-height: 1;
}

.enav-body {
    display: none;
    padding: 0 1rem 1rem 2.63rem;
    color: #2f3a45;
}

.enav-item.is-open .enav-body {
    display: block;
}

.enav-body p {
    margin: 0 0 0.7rem;
    line-height: 1.65;
    font-size: 0.95rem;
}

.enav-body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .enavigation-overlay {
        padding: 3.2rem 0;
    }

    .enavigation-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .enavigation-intro {
        padding-top: 0;
    }

    .enavigation-intro h2 {
        font-size: 2.3rem;
    }

    .enavigation-intro h3 {
        font-size: 1.45rem;
        margin-bottom: 1rem;
    }

    .enavigation-intro h4 {
        font-size: 1.2rem;
    }

    .enavigation-intro p {
        font-size: 1rem;
    }
}

.training-feature {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
    min-height: 620px;
}

.training-content {
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.training-inner {
    max-width: 430px;
}

.training-inner h2 {
    margin: 0 0 1.7rem;
    text-align: center;
    font-size: 2rem;
    color: #2a3138;
}

.training-inner p {
    margin: 0 0 1.2rem;
    color: #2f3a44;
    line-height: 1.85;
    font-size: 0.96rem;
}

.training-inner p:last-child {
    margin-bottom: 0;
}

.training-image {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

@media (max-width: 900px) {
    .training-feature {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .training-image {
        min-height: 320px;
    }

    .training-content {
        padding: 2rem 1.25rem;
    }
}

.marine-section {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.marine-overlay {
    background: rgba(18, 29, 38, 0.22);
    padding: 2.8rem 0;
}

.marine-inner {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    gap: 1rem;
}

.marine-side-title {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 3.1rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.78);
    letter-spacing: 0.08em;
}

.marine-card {
    width: min(620px, 100%);
    background: rgba(255, 255, 255, 0.86);
    padding: 1.35rem 1.35rem 1.2rem;
}

.marine-card h2 {
    margin: 0 0 0.6rem;
    font-size: 2rem;
    color: #111a23;
}

.marine-services-list {
    margin: 0 0 1rem;
    padding-left: 1rem;
}

.marine-services-list li {
    margin: 0.25rem 0;
    line-height: 1.4;
    font-size: 0.95rem;
}

.marine-card h3 {
    margin: 0.45rem 0 0.7rem;
    font-size: 1.55rem;
    color: #111a23;
    letter-spacing: 0.04em;
    border-bottom: 2px solid #111a23;
    padding-bottom: 0.35rem;
}

.marine-certified-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 1rem 1.2rem;
}

.marine-certified-grid ul {
    margin: 0;
    padding-left: 1rem;
}

.marine-certified-grid li {
    margin: 0.25rem 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .marine-overlay {
        padding: 2rem 0;
    }

    .marine-inner {
        flex-direction: column;
        gap: 0.6rem;
    }

    .marine-side-title {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 2.2rem;
        letter-spacing: 0.02em;
    }

    .marine-certified-grid {
        grid-template-columns: 1fr;
    }

    .marine-card {
        padding: 1rem;
    }
}

.latest-news-section {
    background: #f6f8fb;
    padding: 4rem 0 4.2rem;
}

.latest-news-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
}

.latest-news-head h2 {
    margin: 0;
    font-size: 2rem;
    color: #1b2d3f;
}

.latest-news-nav {
    display: flex;
    gap: 0.45rem;
}

.news-arrow {
    width: 38px;
    height: 38px;
    border: 1px solid #b8c4d1;
    background: #fff;
    color: #1b2d3f;
    font-size: 1.2rem;
    cursor: pointer;
}

.news-arrow:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.latest-news-viewport {
    overflow: hidden;
}

.latest-news-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc(100% / 3);
    transition: transform 0.35s ease;
}

.news-card {
    margin: 0.35rem;
    border: 1px solid #d6dee7;
    background: #fff;
    padding: 1.05rem;
    min-height: 180px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.news-card h3 {
    margin: 0 0 0.55rem;
    font-size: 1.08rem;
    color: #142638;
}

.news-card p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.6;
    color: #3a4a59;
}

.latest-news-cta-wrap {
    margin-top: 1.35rem;
    text-align: center;
}

.latest-news-cta {
    display: inline-block;
    padding: 0.75rem 1.4rem;
    border-radius: 999px;
    background: #0b325a;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 1100px) {
    .latest-news-track {
        grid-auto-columns: calc(100% / 2);
    }
}

@media (max-width: 700px) {
    .latest-news-section {
        padding: 3rem 0 3.2rem;
    }

    .latest-news-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.7rem;
    }

    .latest-news-track {
        grid-auto-columns: 100%;
    }
}

.contact-final-section {
    background: #eef2f7;
    padding: 3.6rem 0;
}

.contact-final-inner {
    display: grid;
    grid-template-columns: minmax(300px, 420px) minmax(340px, 1fr);
    gap: 1.2rem;
    align-items: stretch;
}

.contact-final-info {
    background: #fff;
    border: 1px solid #d6dee7;
    padding: 1.4rem 1.2rem;
}

.contact-final-info h2 {
    margin: 0 0 0.7rem;
    font-size: 1.8rem;
    color: #1a2f43;
}

.contact-company {
    margin: 0 0 0.9rem;
    font-weight: 700;
    color: #1e3d57;
}

.contact-actions {
    margin-top: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.contact-actions a {
    color: #0b325a;
    text-decoration: none;
    font-weight: 600;
}

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

.contact-final-map {
    min-height: 360px;
    border: 1px solid #d6dee7;
    overflow: hidden;
}

.contact-final-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 900px) {
    .contact-final-inner {
        grid-template-columns: 1fr;
    }

    .contact-final-map {
        min-height: 320px;
    }
}

.header-auth-link a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.8rem;
    border: 1px solid #2a2e6b;
    border-radius: 999px;
    color: #2a2e6b;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    background: #fff;
}

.articles-preview-section,
.articles-list-section {
    background: #eef2f7;
    padding: 3.2rem 0;
}

.articles-preview-section h2,
.articles-list-section h2 {
    margin: 0 0 1.1rem;
    color: #1b2d3f;
    text-align: center;
    font-size: 2rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.6rem;
}

.articles-list-section .articles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 720px) {
    .articles-list-section .articles-grid {
        grid-template-columns: 1fr;
    }
}

.article-card {
    background: #f4f6f9;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding-bottom: 0.9rem;
}

.article-card h3 {
    margin: 0.85rem 0 0;
    color: #162839;
    font-size: clamp(1.2rem, 1.7vw, 1.65rem);
    line-height: 1.3;
    min-height: 2.5em;
    padding: 0 1rem;
}

.article-card h3 a {
    color: inherit;
    text-decoration: none;
}

.article-card h3 a:hover {
    color: #2a2e6b;
}

.article-card p,
.article-body-snippet {
    margin: 0 0 0.6rem;
    color: #3d4c5a;
    line-height: 1.7;
    font-size: 0.95rem;
    padding: 0 1rem;
}

.article-body-snippet {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-body-snippet.is-expanded {
    display: block;
    overflow: visible;
}

.article-summary-toggle {
    display: inline-flex;
    align-items: center;
    border: 0;
    background: transparent;
    color: #2a2e6b;
    font: inherit;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 0 1rem;
    margin: 0 0 0.75rem;
    cursor: pointer;
}

.article-summary-toggle:hover {
    text-decoration: underline;
}

.article-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: auto;
    padding: 0.75rem 1rem 0;
    border-top: 1px solid #d8dee6;
}

.article-card-date {
    color: #596676;
    font-size: 0.86rem;
    font-weight: 500;
}

.article-card-chip {
    display: inline-flex;
    align-items: center;
    border: 1px solid #d6dce4;
    border-radius: 999px;
    padding: 0.3rem 0.8rem;
    color: #374151;
    background: #f8fafc;
    font-size: 0.82rem;
    font-weight: 600;
}

.articles-preview-link {
    margin: 1rem 0 0;
    text-align: center;
}

.articles-preview-link a {
    color: #2a2e6b;
    text-decoration: none;
    font-weight: 600;
}

a.article-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

a.article-card:hover {
    border-color: #2a2e6b;
    box-shadow: 0 4px 14px rgba(42, 46, 107, 0.12);
}

.article-card-image {
    display: block;
    margin: 0 0 10px;
    aspect-ratio: 16 / 8;
    overflow: hidden;
    background: #e8edf3;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.article-detail-section {
    padding: 2rem 0 2.5rem;
    background: #fff;
}

.article-detail-inner {
    max-width: 820px;
}

.article-detail-header {
    margin-bottom: 1.25rem;
}

.article-detail-title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #111827;
}

.article-detail-date {
    display: block;
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.article-detail-excerpt {
    font-size: 1.05rem;
    color: #374151;
    line-height: 1.55;
    margin: 0;
}

.article-detail-featured {
    margin: 0 0 1.5rem;
}

.article-detail-featured img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.prose-content {
    font-size: 1rem;
    line-height: 1.7;
    color: #1f2937;
}

.prose-content p {
    margin: 0 0 1rem;
}

.prose-content h2,
.prose-content h3 {
    margin: 1.5rem 0 0.75rem;
    color: #111827;
}

.prose-content ul,
.prose-content ol {
    margin: 0 0 1rem 1.25rem;
}

.prose-content img {
    max-width: 100%;
    height: auto;
}

.prose-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.prose-content th,
.prose-content td {
    border: 1px solid #d1d5db;
    padding: 0.4rem 0.5rem;
}

.article-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.75rem;
    margin-top: 2rem;
}

.article-gallery-item {
    display: block;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
}

.article-gallery-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.admin-article-thumb-wrap {
    margin: 0.35rem 0;
}

.admin-article-thumb {
    max-width: 220px;
    max-height: 140px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #d7dee8;
}

.admin-article-gallery-list {
    list-style: none;
    margin: 0.5rem 0 1rem;
    padding: 0;
}

.admin-article-gallery-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.admin-article-gallery-thumb {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #d7dee8;
}

.form-hint {
    display: block;
    margin-top: 0.35rem;
    color: #64748b;
    font-size: 0.85rem;
}

.admin-body {
    margin: 0;
    background: #f5f7fb;
    color: #1b2d3f;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.admin-topbar {
    background: #fff;
    border-bottom: 1px solid #d7dce2;
}

.admin-topbar-inner {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.admin-brand {
    color: #1b2d3f;
    text-decoration: none;
    font-weight: 700;
}

.admin-nav {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.admin-nav a {
    color: #2a2e6b;
    text-decoration: none;
    font-weight: 600;
}

.admin-link-btn {
    border: 0;
    background: transparent;
    color: #2a2e6b;
    cursor: pointer;
    font: inherit;
    font-weight: 600;
}

.admin-wrap {
    max-width: 980px;
    margin: 1.4rem auto 2rem;
    background: #fff;
    border: 1px solid #d7dce2;
    border-radius: 10px;
    padding: 1.25rem;
}

.admin-wrap:has(.admin-article-editor-grid) {
    max-width: 1120px;
}

.article-admin-form {
    padding-bottom: 2rem;
}

.admin-article-page-head {
    margin-bottom: 1rem;
}

.admin-article-page-h1 {
    margin: 0;
    font-size: 1.35rem;
    color: #1b2d3f;
    font-weight: 700;
}

.admin-article-page-id {
    color: #64748b;
    font-weight: 600;
}

.admin-article-editor-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 1.25rem;
    align-items: start;
}

@media (max-width: 960px) {
    .admin-article-editor-grid {
        grid-template-columns: 1fr;
    }
}

.admin-article-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 1.1rem 1.2rem;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
    margin-bottom: 1rem;
}

.admin-article-card-muted {
    background: #f8fafc;
}

.admin-article-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e2e8f0;
}

.admin-article-card-title {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #64748b;
}

.admin-article-card-title-only {
    margin: 0 0 0.85rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid #e2e8f0;
    width: 100%;
}

.admin-article-lang-toggle {
    display: inline-flex;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    overflow: hidden;
}

.admin-article-lang-pill {
    position: relative;
}

.admin-article-lang-pill input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.admin-article-lang-pill span {
    display: block;
    padding: 0.35rem 0.85rem;
    font-size: 0.82rem;
    cursor: pointer;
    background: #fff;
    color: #475569;
}

.admin-article-lang-pill.is-active span {
    background: #2a2e6b;
    color: #fff;
}

.admin-article-field {
    display: block;
    margin-bottom: 1rem;
}

.admin-article-field:last-child {
    margin-bottom: 0;
}

.admin-article-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.35rem;
}

.admin-article-req {
    color: #dc2626;
}

.admin-article-input,
.admin-article-textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 0.55rem 0.65rem;
    font: inherit;
    box-sizing: border-box;
}

.admin-article-textarea-sm {
    min-height: 4.5rem;
    resize: vertical;
}

.admin-article-seo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.admin-article-seo-preview {
    margin-bottom: 1rem;
    padding: 0.85rem;
    border: 1px solid #dbe7f3;
    border-radius: 10px;
    background: #f8fafc;
}

.admin-article-seo-preview-url {
    margin: 0 0 0.25rem;
    color: #188038;
    font-size: 0.78rem;
    word-break: break-all;
}

.admin-article-seo-preview-title {
    margin: 0 0 0.25rem;
    color: #1a0dab;
    font-size: 1.05rem;
    line-height: 1.3;
}

.admin-article-seo-preview-desc {
    margin: 0;
    color: #4d5156;
    font-size: 0.86rem;
    line-height: 1.45;
}

.admin-article-seo-count {
    display: block;
    margin-top: 0.28rem;
    color: #64748b;
    font-size: 0.74rem;
}

.admin-article-seo-count.is-good {
    color: #15803d;
}

.admin-article-seo-count.is-short {
    color: #b45309;
}

.admin-article-seo-count.is-long {
    color: #b91c1c;
}

.admin-article-seo-subtitle {
    margin: 0.4rem 0 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid #e2e8f0;
    color: #334155;
    font-size: 0.9rem;
}

@media (max-width: 700px) {
    .admin-article-seo-grid {
        grid-template-columns: 1fr;
    }
}

.admin-article-tags-row {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
}

.admin-article-tags-row .admin-article-input {
    flex: 1;
}

.admin-article-tag-add {
    flex-shrink: 0;
    padding: 0 0.75rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #f1f5f9;
    cursor: pointer;
    font: inherit;
    font-size: 0.85rem;
    white-space: nowrap;
}

.admin-article-hint {
    font-size: 0.78rem;
    color: #64748b;
    margin: 0.35rem 0 0;
}

.admin-article-dropzone {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    border: 2px dashed #cbd5e1;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 0.5rem;
    position: relative;
    background: #fafafa;
}

.admin-article-dropzone-secondary {
    min-height: 100px;
}

.admin-article-file {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    font-size: 0;
}

.admin-article-dropzone-text {
    pointer-events: none;
    text-align: center;
    padding: 0 1rem;
    color: #64748b;
    font-size: 0.88rem;
}

.admin-article-check {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    margin: 0.5rem 0;
}

.admin-article-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.admin-article-revision {
    display: grid;
    gap: 0.45rem;
    padding: 0.6rem;
    margin-top: 0.55rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
}

.admin-article-revision-meta {
    display: grid;
    gap: 0.15rem;
    color: #64748b;
    font-size: 0.78rem;
}

.admin-article-revision-meta strong {
    color: #1e293b;
}

.admin-article-revision-restore {
    width: 100%;
    border: 1px solid #2a2e6b;
    border-radius: 7px;
    background: #fff;
    color: #2a2e6b;
    padding: 0.38rem 0.55rem;
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 700;
}

.admin-article-revision-restore:hover,
.admin-article-revision-restore:focus-visible {
    background: #eef2ff;
    outline: none;
}

.btn-article-publish {
    border: 0;
    border-radius: 8px;
    padding: 0.55rem 1.25rem;
    font-weight: 600;
    cursor: pointer;
    background: #16a34a;
    color: #fff;
    font: inherit;
}

.btn-article-unpublish {
    border: 0;
    border-radius: 8px;
    padding: 0.55rem 1.25rem;
    font-weight: 600;
    cursor: pointer;
    background: #dc2626;
    color: #fff;
    font: inherit;
}

.btn-article-publish:hover {
    background: #15803d;
}

.btn-article-unpublish:hover {
    background: #b91c1c;
}

.article-detail-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 1rem;
    margin-bottom: 0.5rem;
}

.article-detail-category {
    font-size: 0.82rem;
    font-weight: 600;
    color: #2a2e6b;
    background: #eef2ff;
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
}

.article-detail-tags {
    list-style: none;
    margin: 0 0 0.75rem;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.article-detail-tags li {
    font-size: 0.78rem;
    color: #475569;
    background: #f1f5f9;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
}

.admin-form .row {
    display: grid;
    gap: 0.4rem;
    margin-bottom: 0.9rem;
}

.admin-form .row input,
.admin-form .row textarea,
.admin-form .row select {
    border: 1px solid #cfd4dc;
    border-radius: 6px;
    padding: 0.55rem;
    font: inherit;
}

.admin-settings-fieldset {
    margin: 1.25rem 0;
    padding: 1rem;
    border: 1px solid #d7dce2;
    border-radius: 10px;
    background: #f9fbff;
}

.admin-settings-fieldset legend {
    padding: 0 0.35rem;
    color: #07396f;
    font-weight: 700;
}

.row-inline {
    display: flex !important;
    align-items: center;
    gap: 0.45rem;
}

.btn {
    background: #07396f;
    color: #fff;
    border: 0;
    border-radius: 6px;
    padding: 0.65rem 1rem;
    cursor: pointer;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

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

.newsletter-admin-filters {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(150px, 190px) minmax(150px, 190px) auto;
    gap: 0.75rem;
    align-items: end;
    margin-bottom: 1rem;
}

.newsletter-admin-filters .row {
    margin-bottom: 0;
}

@media (max-width: 800px) {
    .newsletter-admin-filters {
        grid-template-columns: 1fr;
    }
}

.admin-stat-card {
    border: 1px solid #d7dce2;
    background: #f9fbff;
    border-radius: 8px;
    padding: 0.85rem;
}

.admin-stat-card h2 {
    margin: 0 0 0.35rem;
    font-size: 0.98rem;
}

.admin-stat-card p {
    margin: 0;
}

.admin-block {
    margin-top: 1.4rem;
}

.admin-head-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

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

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

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

.admin-table th,
.admin-table td {
    border-bottom: 1px solid #e2e7ef;
    text-align: left;
    padding: 0.6rem 0.5rem;
    font-size: 0.92rem;
}

.admin-article-list-thumb {
    width: 68px;
    height: 42px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #d5dce6;
    display: block;
    background: #e9eef5;
}

.admin-article-list-thumb-empty {
    color: #94a3b8;
}

.admin-actions-inline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-actions-inline form {
    margin: 0;
}

.admin-actions-inline button {
    border: 0;
    background: transparent;
    color: #9a2034;
    cursor: pointer;
    font: inherit;
    padding: 0;
}

.admin-details-legacy {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border: 1px dashed #cfd6e4;
    border-radius: 6px;
    background: #fafbfc;
}

.admin-details-legacy summary {
    cursor: pointer;
    font-weight: 600;
}

.flash {
    color: #0d7f3f;
}

.errors {
    color: #a31f2f;
}

/* Admin: sidebar layout */
.admin-shell {
    display: flex;
    min-height: 100vh;
    align-items: stretch;
}

.admin-sidebar {
    width: 260px;
    flex-shrink: 0;
    background: #1b2d3f;
    color: #e8ecf1;
    display: flex;
    flex-direction: column;
}

.admin-sidebar-brand {
    padding: 1.1rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-sidebar-brand-link {
    display: block;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
}

.admin-sidebar-preview {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.65rem;
    padding: 0.38rem 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(249, 179, 0, 0.12);
    color: #ffd56a;
    text-decoration: none;
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1;
}

.admin-sidebar-preview:hover {
    background: #f9b300;
    border-color: #f9b300;
    color: #1b2d3f;
}

.admin-sidebar-nav {
    padding: 0.75rem 0;
    flex: 1;
    overflow-y: auto;
}

.admin-sidebar-link {
    display: block;
    padding: 0.45rem 0.65rem 0.45rem 0.75rem;
    color: #d7dee8;
    text-decoration: none;
    font-size: 0.92rem;
    border-left: 3px solid transparent;
}

.admin-sidebar-link-inner {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.admin-sidebar-link-text {
    flex: 1;
    min-width: 0;
}

.admin-sidebar-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.admin-sidebar-icon svg {
    width: 16px;
    height: 16px;
    color: #fff;
}

.admin-sidebar-icon--dashboard {
    background: linear-gradient(145deg, #8b6ae8, #5c3dc4);
}

.admin-sidebar-icon--posts {
    background: linear-gradient(145deg, #4fa3ff, #2568c7);
}

.admin-sidebar-icon--media {
    background: linear-gradient(145deg, #6a7a8a, #4a5560);
}

.admin-sidebar-icon--pages {
    background: linear-gradient(145deg, #5bc0a8, #2f8f75);
}

.admin-sidebar-icon--users {
    background: linear-gradient(145deg, #38bdf8, #0369a1);
}

.admin-sidebar-icon--slider {
    background: linear-gradient(145deg, #f0a020, #c9780a);
}

.admin-sidebar-icon--service {
    background: linear-gradient(145deg, #5ab4e6, #2d87b8);
}

.admin-sidebar-icon--settings {
    background: linear-gradient(145deg, #a89bdc, #6b5bb5);
}

.admin-sidebar-icon--plugins {
    background: linear-gradient(145deg, #e878a8, #b84578);
}

.admin-sidebar-link:hover,
.admin-sidebar-link.is-active {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border-left-color: #f9b300;
}

.admin-sidebar-details {
    border: 0;
    margin: 0;
}

.admin-sidebar-summary {
    list-style: none;
    padding: 0.45rem 0.65rem 0.45rem 0.75rem;
    cursor: pointer;
    font-size: 0.92rem;
    color: #d7dee8;
    font-weight: 600;
}

.admin-sidebar-summary::-webkit-details-marker {
    display: none;
}

.admin-sidebar-sub {
    padding: 0.15rem 0 0.5rem 0.35rem;
}

.admin-sidebar-sublink {
    display: block;
    padding: 0.4rem 0.75rem 0.4rem 1.25rem;
    color: #b8c4d1;
    text-decoration: none;
    font-size: 0.88rem;
    border-radius: 4px;
    margin: 0 0.35rem;
}

.admin-sidebar-sublink:hover,
.admin-sidebar-sublink.is-active {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

/* Admin sidebar: collapsible groups (chevron + tinted row) */
.admin-sidebar-posts.admin-sidebar-details,
.admin-sidebar-settings.admin-sidebar-details {
    margin: 0.12rem 0;
}

.admin-sidebar-summary-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    position: relative;
    padding-right: 1.35rem;
}

.admin-sidebar-summary-posts {
    margin: 0 0.35rem;
    border-radius: 6px;
    background: rgba(91, 155, 213, 0.12);
    position: relative;
    padding-right: 0.25rem;
}

.admin-sidebar-summary-settings {
    margin: 0 0.35rem;
    border-radius: 6px;
    background: rgba(168, 155, 220, 0.12);
    position: relative;
    padding-right: 0.25rem;
}

.admin-sidebar-posts .admin-sidebar-summary-posts::after,
.admin-sidebar-settings .admin-sidebar-summary-settings::after {
    content: '\25BE';
    position: absolute;
    right: 0.55rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.65rem;
    opacity: 0.65;
    line-height: 1;
    pointer-events: none;
}

.admin-sidebar-posts:not([open]) .admin-sidebar-summary-posts::after,
.admin-sidebar-settings:not([open]) .admin-sidebar-summary-settings::after {
    content: '\25B8';
}

.admin-sidebar-pages.admin-sidebar-details {
    margin: 0.12rem 0;
}

.admin-sidebar-summary-pages {
    margin: 0 0.35rem;
    border-radius: 6px;
    background: rgba(94, 200, 176, 0.14);
    position: relative;
    padding-right: 0.25rem;
}

.admin-sidebar-pages .admin-sidebar-summary-pages::after {
    content: '\25BE';
    position: absolute;
    right: 0.55rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.65rem;
    opacity: 0.65;
    line-height: 1;
    pointer-events: none;
}

.admin-sidebar-pages:not([open]) .admin-sidebar-summary-pages::after {
    content: '\25B8';
}

.page-fallback {
    padding: 3rem 0 4rem;
}

.page-fallback-inner {
    max-width: 42rem;
}

.page-fallback-text {
    line-height: 1.55;
    color: #4a5568;
    margin: 1rem 0 1.25rem;
}

.pagebuilder-surface {
    min-height: 40vh;
    padding-bottom: 2rem;
}

.admin-pagebuilder-box {
    margin: 1rem 0 1.25rem;
    padding: 0.85rem 1rem;
    border: 1px solid #d5e3ef;
    border-radius: 8px;
    background: #f7fbfd;
}

.admin-pagebuilder-box-title {
    margin: 0 0 0.35rem;
    font-size: 1rem;
}

.admin-pagebuilder-box-hint {
    margin: 0 0 0.75rem;
    font-size: 0.88rem;
    color: #4a5568;
    line-height: 1.45;
}

.admin-pagebuilder-box .muted {
    font-size: 0.85rem;
    color: #64748b;
}

.admin-sidebar-sub-bullets .admin-sidebar-sublink {
    position: relative;
    padding-left: 1.65rem;
}

.admin-sidebar-sub-bullets .admin-sidebar-sublink::before {
    content: '';
    position: absolute;
    left: 0.45rem;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #7a8fa3;
}

.admin-sidebar-sub-bullets .admin-sidebar-sublink.is-active::before {
    background: #6bb3ff;
}

.admin-sidebar-sub-bullets .admin-sidebar-sublink.is-active {
    color: #9dceff;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Admin: media library page */
.admin-media-page-head {
    margin-bottom: 1.25rem;
}

.admin-media-page-h1 {
    margin: 0 0 0.35rem;
    font-size: 1.45rem;
}

.admin-media-page-lead {
    margin: 0;
    color: #5a6573;
    font-size: 0.95rem;
}

.admin-media-optimize-form {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.85rem;
}

.admin-media-optimize-form span {
    color: #64748b;
    font-size: 0.82rem;
}

.admin-media-alert {
    padding: 1rem 1.1rem;
    background: #fff3cd;
    border: 1px solid #e6d48a;
    border-radius: 8px;
    color: #664d03;
}

.admin-media-tabs {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.admin-media-tab {
    border: 1px solid #d5dbe3;
    background: #f4f6f9;
    padding: 0.5rem 1rem;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    font: inherit;
    font-size: 0.92rem;
    color: #3a4550;
}

.admin-media-tab.is-active {
    background: #fff;
    border-bottom-color: #fff;
    font-weight: 600;
}

.admin-media-panel {
    background: #fff;
    border: 1px solid #d5dbe3;
    border-radius: 0 8px 8px 8px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.admin-media-panel:not(.is-active) {
    border-radius: 8px;
}

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

.admin-media-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.admin-media-select,
.admin-media-search-input {
    border: 1px solid #cfd6df;
    border-radius: 6px;
    padding: 0.45rem 0.65rem;
    font: inherit;
    font-size: 0.9rem;
    min-width: 9rem;
}

.admin-media-search-input {
    min-width: 12rem;
}

.admin-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.85rem;
    max-height: 55vh;
    overflow-y: auto;
    padding: 0.25rem;
}

.admin-media-card {
    border: 1px solid #e2e7ee;
    border-radius: 8px;
    overflow: hidden;
    background: #fafbfc;
    display: flex;
    flex-direction: column;
}

.admin-media-card-preview {
    display: block;
    aspect-ratio: 1;
    background: #eef1f5;
}

.admin-media-card-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-media-card-meta {
    padding: 0.4rem 0.5rem;
    font-size: 0.75rem;
    color: #4a5560;
    word-break: break-all;
}

.admin-media-card-delete {
    padding: 0 0.5rem 0.5rem;
    margin: 0;
}

.admin-media-upload-form {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.admin-media-upload-label {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.9rem;
}

.admin-media-sync-form {
    margin-top: 0.5rem;
}

.admin-media-loadmore-wrap {
    text-align: center;
    margin-top: 1rem;
}

.admin-media-btn {
    border-radius: 6px;
    padding: 0.45rem 1rem;
    font: inherit;
    font-size: 0.9rem;
    cursor: pointer;
    border: 1px solid transparent;
}

.admin-media-btn-primary {
    background: #2d6fd4;
    color: #fff;
    border-color: #2560b8;
}

.admin-media-btn-primary:hover {
    background: #2560b8;
}

.admin-media-btn-secondary {
    background: #fff;
    border-color: #cfd6df;
    color: #334155;
}

.admin-media-btn-danger-sm {
    font-size: 0.78rem;
    padding: 0.25rem 0.5rem;
    background: #fff;
    border: 1px solid #e2a4a4;
    color: #a32020;
    border-radius: 4px;
    cursor: pointer;
}

.admin-media-error {
    color: #a32020;
}

/* Article editor: media picker */
.admin-article-media-pick {
    display: inline-block;
    margin: 0.5rem 0;
    padding: 0.35rem 0.75rem;
    font: inherit;
    font-size: 0.85rem;
    border-radius: 6px;
    border: 1px solid #cfd6df;
    background: #f7f9fc;
    color: #2d4a7c;
    cursor: pointer;
}

.admin-article-media-pick:hover {
    background: #eef2f8;
}

.admin-article-gallery-picks {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.35rem 0 0.5rem;
    align-items: center;
}

.admin-article-gallery-pick-chip {
    position: relative;
    display: inline-flex;
    align-items: center;
    border: 1px solid #e2e7ee;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.admin-article-gallery-pick-chip img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    display: block;
}

.admin-article-gallery-pick-remove {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 1.35rem;
    height: 1.35rem;
    border: 0;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    line-height: 1;
    cursor: pointer;
    font-size: 1rem;
    padding: 0;
}

body.admin-media-picker-open {
    overflow: hidden;
}

.admin-media-picker-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    z-index: 1200;
}

.admin-media-picker-backdrop[hidden] {
    display: none !important;
}

.admin-media-picker-modal {
    position: fixed;
    z-index: 1210;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(720px, 94vw);
    max-height: min(86vh, 640px);
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.admin-media-picker-modal[hidden] {
    display: none !important;
}

.admin-media-picker-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e8ecf1;
}

.admin-media-picker-title {
    margin: 0;
    font-size: 1.1rem;
}

.admin-media-picker-close {
    border: 0;
    background: transparent;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: #64748b;
}

.admin-media-picker-toolbar {
    padding: 0.5rem 1rem;
    border-bottom: 1px solid #eef1f5;
}

.admin-media-picker-search {
    width: 100%;
    max-width: 100%;
    border: 1px solid #cfd6df;
    border-radius: 6px;
    padding: 0.45rem 0.65rem;
    font: inherit;
}

.admin-media-picker-grid {
    flex: 1;
    overflow-y: auto;
    padding: 0.75rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.5rem;
}

.admin-media-picker-tile {
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 0;
    cursor: pointer;
    background: #f1f4f8;
    overflow: hidden;
    aspect-ratio: 1;
}

.admin-media-picker-tile:hover {
    border-color: #2d6fd4;
}

.admin-media-picker-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.admin-media-picker-footer {
    padding: 0.5rem 1rem;
    border-top: 1px solid #e8ecf1;
    text-align: center;
}

.admin-sidebar-footer {
    padding: 0.75rem 1rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-sidebar-logout-form {
    margin: 0;
}

.admin-sidebar-logout {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    color: #fff;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    font: inherit;
}

.admin-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    background: #eef2f7;
}

.admin-main-topbar {
    background: #fff;
    border-bottom: 1px solid #d7dce2;
    padding: 0.75rem 1.25rem;
}

.admin-main-topbar-title {
    font-weight: 600;
    color: #1b2d3f;
}

.admin-main-inner {
    flex: 1;
    padding: 1.25rem;
}

.admin-main-inner > .admin-wrap,
.admin-main-inner > h1:first-child {
    max-width: 1000px;
}

.admin-main-inner > h1:first-child {
    margin-top: 0;
}

.admin-main-inner .admin-wrap {
    margin: 0 auto 1.5rem;
    max-width: 1000px;
}

.admin-wrap-guest {
    margin: 3rem auto;
}

.admin-intro {
    color: #4a5562;
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0 0 1rem;
}

.admin-muted {
    color: #6b7280;
    font-size: 0.9rem;
}

.admin-fieldset {
    border: 1px solid #d7dce2;
    border-radius: 8px;
    padding: 1rem 1rem 0.25rem;
    margin-bottom: 1rem;
}

.admin-fieldset legend {
    padding: 0 0.35rem;
    font-weight: 600;
    color: #2a2e6b;
}

.admin-thumb-preview {
    font-size: 0.88rem;
    margin: 0 0 0.5rem;
}

.admin-thumb-preview img {
    vertical-align: middle;
    margin-left: 0.35rem;
    border-radius: 4px;
}

.admin-menu-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.admin-menu-card {
    flex: 1;
    min-width: 240px;
    border: 1px solid #d7dce2;
    border-radius: 8px;
    padding: 0.75rem 1rem 1rem;
    background: #fafbfc;
}

.admin-menu-card-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.admin-menu-delete {
    margin: 0;
    align-self: flex-end;
}

/* Admin: WordPress-style menu builder */
.wp-menu-reminder {
    margin-bottom: 1rem;
}

.wp-menu-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
    margin-bottom: 1.25rem;
    padding: 0.75rem 1rem;
    background: #f4f6f9;
    border: 1px solid #d7dce2;
    border-radius: 8px;
}

.wp-menu-toolbar-label {
    font-weight: 600;
    color: #2a2e6b;
}

.wp-select {
    min-width: 10rem;
    padding: 0.35rem 0.5rem;
    border-radius: 6px;
    border: 1px solid #c5cdd8;
}

.wp-menu-builder-grid {
    display: grid;
    grid-template-columns: minmax(260px, 320px) 1fr;
    gap: 1.25rem;
    align-items: start;
}

@media (max-width: 960px) {
    .wp-menu-builder-grid {
        grid-template-columns: 1fr;
    }
}

.wp-menu-builder-col h2 {
    font-size: 1.05rem;
    margin: 0 0 0.65rem;
    color: #2a2e6b;
}

.wp-menu-add-col {
    border: 1px solid #d7dce2;
    border-radius: 8px;
    padding: 1rem;
    background: #fafbfc;
}

.wp-menu-structure-col {
    border: 1px solid #d7dce2;
    border-radius: 8px;
    padding: 1rem;
    background: #fff;
}

.wp-accordion {
    border: 1px solid #d7dce2;
    border-radius: 8px;
    margin-bottom: 0.65rem;
    background: #fff;
    overflow: hidden;
}

.wp-accordion-trigger {
    width: 100%;
    text-align: left;
    padding: 0.55rem 0.75rem;
    border: 0;
    background: #eef1f6;
    font-weight: 600;
    cursor: pointer;
    color: #2a2e6b;
}

.wp-accordion-body {
    display: none;
    padding: 0.75rem;
    border-top: 1px solid #d7dce2;
}

.wp-accordion.is-open .wp-accordion-body {
    display: block;
}

.wp-page-checklist {
    max-height: 280px;
    overflow: auto;
    margin-bottom: 0.65rem;
    border: 1px solid #e2e6ec;
    border-radius: 6px;
    padding: 0.35rem 0.5rem;
    background: #fff;
}

.wp-page-row {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    padding: 0.25rem 0;
    font-size: 0.9rem;
    cursor: pointer;
}

.wp-field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
    font-size: 0.88rem;
}

.wp-input {
    padding: 0.4rem 0.5rem;
    border-radius: 6px;
    border: 1px solid #c5cdd8;
}

.wp-input.is-readonly {
    background: #f0f2f5;
    color: #555;
}

.wp-menu-name-label {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
    font-size: 0.88rem;
    font-weight: 600;
}

.wp-menu-structure {
    min-height: 120px;
    padding: 0.5rem;
    border: 1px dashed #c5cdd8;
    border-radius: 8px;
    background: #fafbfc;
}

.wp-menu-item {
    margin-bottom: 0.5rem;
    border: 1px solid #c5cdd8;
    border-radius: 6px;
    background: #e8ecf2;
}

.wp-menu-item-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.65rem;
    cursor: grab;
}

.wp-menu-item-title {
    flex: 1;
    font-weight: 600;
    color: #1f2937;
}

.wp-menu-item-type {
    font-size: 0.82rem;
    color: #4b5563;
}

.wp-menu-item-actions {
    display: flex;
    gap: 0.25rem;
}

.wp-menu-toggle,
.wp-menu-remove {
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0.2rem 0.35rem;
    color: #374151;
    border-radius: 4px;
}

.wp-menu-remove {
    color: #9a2034;
    font-size: 1.1rem;
    line-height: 1;
}

.wp-menu-toggle:hover,
.wp-menu-remove:hover {
    background: rgba(0, 0, 0, 0.06);
}

.wp-menu-item-settings {
    padding: 0.65rem 0.75rem 0.85rem;
    border-top: 1px solid #d1d5db;
    background: #fff;
}

.wp-menu-item-children {
    min-height: 28px;
    padding: 0.35rem 0.35rem 0.35rem 1.25rem;
    border-top: 1px dashed #b8c0cc;
    background: #f9fafb;
}

.wp-menu-footer-actions {
    margin-top: 1rem;
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.btn-primary {
    background: #2a5f9e;
    color: #fff;
    border-color: #244f86;
}

.btn-primary:hover {
    filter: brightness(1.05);
}

.btn-secondary {
    background: #fff;
    color: #2a2e6b;
    border: 1px solid #c5cdd8;
}

.admin-empty-state {
    border: 1px dashed #c5cdd8;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    color: #4a5562;
}

.admin-link-danger {
    color: #9a2034 !important;
}

.admin-pagination .pagination {
    margin: 0.75rem 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.admin-pagination .page-link {
    color: #2a2e6b;
}

.hero-cta-btn {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-cta-btn:hover {
    background: rgba(255, 255, 255, 0.32);
}

@media (max-width: 900px) {
    .admin-shell {
        flex-direction: column;
    }

    .admin-sidebar {
        width: 100%;
    }
}

/* Service Info page (frontend) */
.service-info-hero {
    position: relative;
    min-height: 220px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.service-info-hero-overlay {
    min-height: 220px;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(8, 20, 38, 0.78) 0%, rgba(8, 20, 38, 0.35) 55%, rgba(8, 20, 38, 0.15) 100%);
}

.service-info-hero-title {
    margin: 0;
    font-size: clamp(1.75rem, 4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #fff;
    text-transform: uppercase;
}

.service-info-breadcrumb-wrap {
    background: #f4f6f8;
    border-bottom: 1px solid #e1e6ed;
}

.service-info-breadcrumb {
    padding: 0.65rem 0;
    font-size: 0.88rem;
    color: #6b7280;
}

.service-info-breadcrumb a {
    color: #5c6570;
    text-decoration: none;
}

.service-info-breadcrumb a:hover {
    text-decoration: underline;
    color: #2a2e6b;
}

.service-info-breadcrumb-sep {
    margin: 0 0.35rem;
    color: #9aa3ad;
}

.service-info-breadcrumb-current {
    color: #4b5563;
}

.service-info-list-section {
    background: #fff;
    padding: 2rem 0 3rem;
}

.service-info-list-inner {
    max-width: 960px;
}

.service-info-row {
    display: grid;
    grid-template-columns: 110px minmax(120px, 200px) 1fr;
    gap: 1rem 1.25rem;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid transparent;
}

.service-info-row:hover {
    background: #fafbfc;
}

.service-info-date {
    font-size: 0.92rem;
    color: #6b7280;
}

.service-info-badge {
    display: inline-block;
    padding: 0.35rem 0.65rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    border-radius: 2px;
    text-align: center;
    line-height: 1.25;
    max-width: 100%;
    word-break: break-word;
}

.service-info-badge--jrc_alphatron {
    background: #c41230;
}

.service-info-badge--ydk {
    background: #2a9d9a;
}

.service-info-badge--jrcs {
    background: #1a3a5c;
}

.service-info-badge--yokogawa {
    background: #2d7a3e;
}

.service-info-badge--imo {
    background: #142a45;
}

.service-info-badge--default {
    background: #5c6570;
}

.admin-table-badge {
    font-size: 0.65rem;
    padding: 0.25rem 0.45rem;
}

.service-info-title-wrap {
    font-size: 0.95rem;
    line-height: 1.45;
}

.service-info-title-link {
    color: #111827;
    text-decoration: none;
    font-weight: 500;
}

.service-info-title-link:hover {
    color: #2a2e6b;
    text-decoration: underline;
}

.service-info-title-text {
    color: #111827;
    font-weight: 500;
}

.service-info-empty {
    color: #6b7280;
    margin: 2rem 0;
}

@media (max-width: 700px) {
    .service-info-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .service-info-date {
        font-weight: 600;
    }
}

/* Public page builder blocks (Filament Builder JSON) */
.page-builder {
    padding: 0px 0px 30px 0px;
}

/* Hero πρώτο τμήμα: χωρίς κενό πάνω — κολλητά στο header */
.page-builder:has(> .page-builder-inner > .page-block--hero:first-child) {
    padding-top: 0;
}

.page-builder-inner {
    max-width: 48rem;
}

.page-block {
    margin-bottom: 2.25rem;
}

.page-block:last-child {
    margin-bottom: 0;
}

.page-block__title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.65rem, 4vw, 2.15rem);
    line-height: 1.2;
    color: #1a202c;
}

.page-block__subtitle {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #4a5568;
}

.page-block__heading {
    margin: 0 0 0.75rem;
    font-size: 1.35rem;
    color: #1a202c;
}

.page-block__body {
    line-height: 1.65;
    color: #2d3748;
}

/* About: image + text split (designer / public) */
.page-block--about-split {
    margin: 0 calc(50% - 50vw);
    margin-top: var(--about-mt, 0px);
    margin-bottom: var(--about-mb, 0px);
    padding-top: var(--about-pt, 0px);
    padding-bottom: var(--about-pb, 0px);
    width: 100vw;
    max-width: none;
}

.page-block--about {
    margin-top: var(--about-mt, 0px);
    margin-bottom: var(--about-mb, 0px);
    padding-top: var(--about-pt, 0px);
    padding-bottom: var(--about-pb, 0px);
}

.page-about-split {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    min-height: clamp(260px, 38vw, 420px);
}

.page-block--about--img-right .page-about-split {
    flex-direction: row-reverse;
}

.page-about-split__media {
    flex: 1 1 50%;
    min-width: min(100%, 280px);
    margin: 0;
    padding: 0;
    background: #0f172a;
}

.page-about-split__img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: clamp(260px, 38vw, 420px);
    object-fit: cover;
}

.page-about-split__text {
    flex: 1 1 50%;
    min-width: min(100%, 280px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: clamp(1.75rem, 4vw, 3rem) clamp(1.25rem, 3vw, 2.5rem);
    background: #e8eef5;
}

.page-about-split__heading {
    margin: 0 0 1rem;
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 700;
    color: #0f2744;
    max-width: 36rem;
}

.page-about-split__body {
    margin: 0;
    max-width: 36rem;
    line-height: 1.65;
    font-size: 1rem;
    color: #334155;
}

@media (max-width: 640px) {
    .page-about-split__media,
    .page-about-split__text {
        flex-basis: 100%;
    }

    .page-about-split__img {
        min-height: 220px;
    }
}

.page-block__list {
    margin: 0.5rem 0 0;
    padding-left: 1.25rem;
    line-height: 1.55;
    color: #2d3748;
}

.page-block__list--plain {
    list-style: none;
    padding-left: 0;
}

.page-block__list--plain li {
    margin-bottom: 0.35rem;
}

/* Page builder: contact — κάρτα + Google Map (full-bleed γκρι φόντο) */
.page-contact-split {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    max-width: none;
    box-sizing: border-box;
    background-color: var(--contact-section-bg-color, #eef2f7);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 3.25rem 0;
}

.page-contact-split__inner {
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(300px, 1fr);
    gap: 1.2rem;
    align-items: stretch;
}

.page-contact-split__inner:has(> .page-contact-split__map:only-child) {
    grid-template-columns: 1fr;
}

.page-contact-split__inner:has(> .page-contact-split__card:only-child) {
    grid-template-columns: 1fr;
    max-width: 36rem;
}

.page-contact-split__card {
    background: var(--contact-card-bg, #fff);
    border: 1px solid #d6dee7;
    padding: var(--contact-card-pt, 1.55rem) var(--contact-card-pr, 1.4rem) var(--contact-card-pb, 1.55rem) var(--contact-card-pl, 1.4rem);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.page-contact-split__title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.5rem, 3vw, 1.85rem);
    font-weight: 700;
    color: #1a2f43;
}

.page-contact-split__company {
    margin: 0;
    font-weight: 700;
    font-size: 1.08rem;
    color: #1e3d57;
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
}

.page-contact-split__meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
}

.page-contact-split__row {
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    color: #243a52;
    font-size: 0.96rem;
    line-height: 1.5;
    text-decoration: none;
    word-break: break-word;
}

.page-contact-split__address {
    font-size: 0.95rem;
}

.page-contact-split__row span:last-child {
    flex: 1;
    min-width: 0;
}

.page-contact-split__meta a.page-contact-split__row {
    color: #0b325a;
    font-weight: 600;
}

.page-contact-split__meta a.page-contact-split__row:hover {
    text-decoration: underline;
}

.page-contact-split__icon {
    width: 1.2rem;
    height: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #3b4f66;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.page-contact-split__icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.approvals-builder {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    max-width: none;
    box-sizing: border-box;
    background-color: var(--approvals-bg-color, #f2f3f4);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 4.2rem 0 4.6rem;
}

.approvals-builder__inner {
    text-align: center;
}

.approvals-builder--left .approvals-builder__inner {
    text-align: left;
}

.approvals-builder--right .approvals-builder__inner {
    text-align: right;
}

.approvals-builder__title {
    margin: 0;
    font-size: clamp(1.65rem, 3vw, 2.05rem);
    color: #333a40;
}

.approvals-builder__description {
    margin: 0.75rem auto 2.1rem;
    max-width: 860px;
    color: #4d555d;
    line-height: 1.65;
    font-size: 0.96rem;
}

.approvals-builder--left .approvals-builder__description {
    margin-left: 0;
    margin-right: auto;
}

.approvals-builder--right .approvals-builder__description {
    margin-left: auto;
    margin-right: 0;
}

.approvals-builder__logos {
    --approvals-gap: 1.1rem;
    display: flex;
    flex-wrap: nowrap;
    gap: var(--approvals-gap);
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    padding-bottom: 0.2rem;
}

.approvals-builder--left .approvals-builder__logos {
    justify-content: flex-start;
}

.approvals-builder--right .approvals-builder__logos {
    justify-content: flex-end;
}

.approvals-builder__logo {
    flex: 0 0 calc((100% - (var(--approvals-gap) * 4)) / 5);
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
}

.approvals-builder__logo img {
    max-width: 118px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
}

@media (max-width: 900px) {
    .approvals-builder__logo {
        flex-basis: calc((100% - (var(--approvals-gap) * 2)) / 3);
    }
}

@media (max-width: 640px) {
    .approvals-builder {
        padding: 3rem 0 3.4rem;
    }

    .approvals-builder__logos {
        --approvals-gap: 0.8rem;
    }

    .approvals-builder__logo {
        flex-basis: calc((100% - var(--approvals-gap)) / 2);
    }
}

.split-toggles {
    position: relative;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    max-width: none;
    box-sizing: border-box;
    background-color: var(--split-toggles-bg-color, #e7ecf2);
    overflow: hidden;
}

.split-toggles::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--split-toggles-bg-image, none);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: var(--split-toggles-bg-image-opacity, 1);
    pointer-events: none;
}

.split-toggles::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--split-toggles-overlay-color, #fff);
    opacity: var(--split-toggles-overlay-opacity, 0.18);
    pointer-events: none;
}

.split-toggles__overlay {
    position: relative;
    z-index: 2;
    padding: 4.4rem 0;
}

.split-toggles__inner {
    display: grid;
    grid-template-columns: minmax(270px, 1fr) minmax(380px, 1fr);
    gap: 2.6rem;
    align-items: start;
}

.split-toggles--reverse .split-toggles__intro {
    order: 2;
}

.split-toggles--reverse .split-toggles__accordion {
    order: 1;
}

.split-toggles__intro {
    color: #1f2c3a;
    align-self: center;
}

.split-toggles__intro h2 {
    margin: 0 0 0.7rem;
    color: var(--split-toggles-title-color, #1f2c3a);
    font-size: clamp(1.8rem, 3.8vw, 3rem);
    line-height: 1.1;
}

.split-toggles__intro p {
    margin: 0;
    color: var(--split-toggles-description-color, #1f2c3a);
    font-size: 1.08rem;
    line-height: 1.55;
}

.split-toggles--left .split-toggles__intro {
    text-align: left;
}

.split-toggles--center .split-toggles__intro {
    text-align: center;
}

.split-toggles--right .split-toggles__intro {
    text-align: right;
}

.split-toggles__accordion {
    background: rgba(243, 243, 243, var(--split-toggles-panel-opacity, 0.9));
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.split-toggles__item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.split-toggles__item:last-child {
    border-bottom: none;
}

.split-toggles__trigger {
    width: 100%;
    display: flex;
    gap: 0.65rem;
    align-items: center;
    border: 0;
    background: transparent;
    color: #222b34;
    padding: 0.95rem 1rem;
    text-align: left;
    font-size: 1.08rem;
    cursor: pointer;
}

.split-toggles__sign {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #303841;
    color: #fff;
    font-size: 0.95rem;
    line-height: 1;
    flex-shrink: 0;
}

.split-toggles__body {
    padding: 0 1rem 1rem 2.63rem;
    color: #2f3a45;
}

.split-toggles__body p {
    margin: 0;
    line-height: 1.65;
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .split-toggles__overlay {
        padding: 3.2rem 0;
    }

    .split-toggles__inner {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .split-toggles--reverse .split-toggles__intro,
    .split-toggles--reverse .split-toggles__accordion {
        order: initial;
    }
}

.vertical-bullets {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    max-width: none;
    box-sizing: border-box;
    background-color: var(--vertical-bullets-bg, #dde3ea);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 2.3rem 0;
}

.vertical-bullets__inner {
    display: flex;
    justify-content: flex-end;
}

.vertical-bullets__panel {
    width: min(100%, 760px);
    display: grid;
    grid-template-columns: 70px 1fr;
    background: rgba(255, 255, 255, var(--vertical-bullets-panel-opacity, 0.92));
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.13);
}

.vertical-bullets__label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.8rem, 3vw, 2.9rem);
    font-weight: 700;
    color: #111827;
    letter-spacing: 0.02em;
    border-right: 1px solid rgba(0, 0, 0, 0.14);
    padding: 0.7rem 0;
}

.vertical-bullets__content {
    padding: 1.2rem 1.35rem 1.35rem;
    color: #111827;
}

.vertical-bullets__content h2 {
    margin: 0 0 0.65rem;
    font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.vertical-bullets__description {
    margin: 0 0 0.8rem;
    line-height: 1.55;
    font-size: 0.98rem;
}

.vertical-bullets__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.35rem;
}

.vertical-bullets__list li {
    position: relative;
    padding-left: 1.2rem;
    line-height: 1.45;
    font-size: 0.97rem;
}

.vertical-bullets__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.04rem;
    color: #111827;
    font-weight: 700;
    font-size: 0.86rem;
}

@media (max-width: 900px) {
    .vertical-bullets__inner {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .vertical-bullets__panel {
        grid-template-columns: 1fr;
    }

    .vertical-bullets__label {
        writing-mode: horizontal-tb;
        transform: none;
        border-right: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.14);
        justify-content: flex-start;
        padding: 0.75rem 1rem 0.55rem;
        font-size: 1.8rem;
    }
}

.articles-feed-block {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    max-width: none;
    box-sizing: border-box;
    background: #eef2f7;
    padding: 3.2rem 0 3.8rem;
}

.articles-feed-block__inner {
    max-width: 1280px;
}

.articles-feed-block__title {
    margin: 0;
    text-align: center;
    color: #1b2d3f;
    font-size: clamp(1.55rem, 2.5vw, 1.95rem);
}

.articles-feed-block__description {
    margin: 0.7rem auto 1.8rem;
    max-width: 900px;
    text-align: center;
    color: #475569;
    line-height: 1.6;
    font-size: 0.96rem;
}

.articles-feed-block__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
    margin-top: var(--articles-item-title-spacing, 12px);
}

.articles-feed-block__card {
    background: #f4f6f9;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding-bottom: 0.9rem;
}

.articles-feed-block__image-link {
    display: block;
    text-decoration: none;
    margin-bottom: 10px;
}

.articles-feed-block__image {
    aspect-ratio: 16 / 8;
    overflow: hidden;
    background: #d8e0ea;
    margin-bottom: 0;
}

.articles-feed-block__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.articles-feed-block__card h3 {
    margin: 0.85rem 0 0;
    font-size: clamp(1.2rem, 1.7vw, 1.65rem);
    line-height: 1.3;
    min-height: 2.5em;
    padding: 0 1rem;
}

.articles-feed-block__card h3 a {
    color: #1f2937;
    text-decoration: none;
}

.articles-feed-block__card p {
    margin: 0 0 0.9rem;
    color: #374151;
    line-height: 1.7;
    font-size: 0.95rem;
    min-height: 5.1em;
    padding: 0 1rem;
}

.articles-feed-block__meta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #6b7280;
    font-size: 0.88rem;
    padding: 0 1rem;
    margin-bottom: 0.65rem;
}

.articles-feed-block__meta-author {
    font-weight: 700;
    color: #111827;
}

.articles-feed-block__chip-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: auto;
    padding: 0.75rem 1rem 0;
    border-top: 1px solid #d8dee6;
}

.articles-feed-block__date {
    color: #6b7280;
    font-size: 0.86rem;
    font-weight: 500;
}

.articles-feed-block__chip {
    display: inline-flex;
    align-items: center;
    border: 1px solid #d6dce4;
    border-radius: 999px;
    padding: 0.3rem 0.8rem;
    color: #374151;
    background: #f8fafc;
    font-size: 0.82rem;
    font-weight: 600;
}

.articles-feed-block--list .articles-feed-block__grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
}

.articles-feed-block--list .articles-feed-block__card {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    padding-bottom: 0;
    display: grid;
    grid-template-columns: minmax(250px, 380px) 1fr;
    gap: 0.45rem 1.35rem;
    align-items: start;
}

.articles-feed-block--list .articles-feed-block__image {
    margin-bottom: 0;
    border-radius: 14px;
}

.articles-feed-block--list .articles-feed-block__card h3,
.articles-feed-block--list .articles-feed-block__card p,
.articles-feed-block--list .articles-feed-block__meta {
    padding: 0;
}

.articles-feed-block--list .articles-feed-block__card h3 {
    margin-top: 0.05rem;
    min-height: 0;
    font-size: clamp(1.55rem, 2.15vw, 2.55rem);
    line-height: 1.18;
    margin-bottom: 0.35rem;
}

.articles-feed-block--list .articles-feed-block__card p {
    display: block;
    min-height: 0;
    margin: 0.15rem 0 0.35rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #667085;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.articles-feed-block--list .articles-feed-block__meta {
    margin-bottom: 0.1rem;
    font-size: 0.86rem;
    color: #8b97ab;
    gap: 0.45rem;
}

.articles-feed-block--list .articles-feed-block__meta-author {
    font-weight: 600;
    color: #8b97ab;
}

.articles-feed-block--list .articles-feed-block__meta-dot {
    color: #d95a6b;
    font-weight: 700;
}

.articles-feed-block--list .articles-feed-block__chip-wrap {
    display: none;
}

.articles-feed-block--list .articles-feed-block__image-link {
    grid-column: 1;
    grid-row: 1 / span 3;
}

.articles-feed-block--list .articles-feed-block__card h3,
.articles-feed-block--list .articles-feed-block__card p,
.articles-feed-block--list .articles-feed-block__card .articles-feed-block__meta {
    grid-column: 2;
}

.header-banner-block {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    max-width: none;
    box-sizing: border-box;
    margin-top: var(--header-banner-mt, 0px);
    margin-bottom: var(--header-banner-mb, 0px);
    padding-top: var(--header-banner-pt, 0px);
    padding-bottom: var(--header-banner-pb, 0px);
    min-height: var(--header-banner-height, 220px);
    background-color: var(--header-banner-bg, #1e293b);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.header-banner-block__overlay {
    min-height: var(--header-banner-height, 220px);
    background: rgba(15, 23, 42, 0.35);
    display: flex;
    align-items: center;
}

.header-banner-block__inner {
    text-align: center;
    color: #f8fafc;
}

.header-banner-block__subtitle {
    margin: 0 0 0.35rem;
    font-size: clamp(0.95rem, 1.3vw, 1.2rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.header-banner-block__title {
    margin: 0;
    font-size: clamp(1.35rem, 2.6vw, 2.25rem);
    line-height: 1.2;
    color: #fff;
}

@media (max-width: 1000px) {
    .articles-feed-block__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .articles-feed-block--list .articles-feed-block__card {
        grid-template-columns: minmax(200px, 300px) 1fr;
    }
}

@media (max-width: 680px) {
    .articles-feed-block {
        padding: 2.6rem 0 3rem;
    }

    .articles-feed-block__grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .articles-feed-block--list .articles-feed-block__card {
        grid-template-columns: 1fr;
    }

    .articles-feed-block--list .articles-feed-block__image-link {
        grid-row: auto;
    }
}

.page-contact-split__map {
    min-height: 360px;
    border: 1px solid #d6dee7;
    overflow: hidden;
    background: #e2e8f0;
}

.page-contact-split__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
}

@media (max-width: 900px) {
    .page-contact-split__inner {
        grid-template-columns: 1fr;
    }

    .page-contact-split__map {
        min-height: 300px;
    }

    .page-contact-split__map iframe {
        min-height: 300px;
    }
}

/* Public: hero slider */
.page-hero-slider {
    position: relative;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    max-width: none;
}

.page-hero-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.page-hero-viewport::-webkit-scrollbar {
    display: none;
}

.page-hero-track {
    display: flex;
}

.page-hero-slide {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 0 0 100%;
    scroll-snap-align: start;
    min-height: clamp(220px, 42vw, 520px);
    background: #1e293b center / cover no-repeat;
    color: #f8fafc;
}

.page-hero-slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.25));
}

.page-hero-slide-inner {
    position: relative;
    z-index: 1;
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    padding: clamp(2rem, 6vw, 4.5rem) 1rem 3rem;
    min-height: clamp(220px, 42vw, 520px);
}

.page-hero-slide-inner--left {
    align-items: flex-start;
    text-align: left;
}

.page-hero-slide-inner--center {
    align-items: center;
    text-align: center;
}

.page-hero-slide-inner--right {
    align-items: flex-end;
    text-align: right;
}

.page-hero-slide-title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.75rem, 4.5vw, 2.75rem);
    line-height: 1.15;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.page-hero-slide-subtitle {
    margin: 0 0 1.25rem;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    line-height: 1.45;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

/* Χωρίς gradient στο φόντο: καθαρή εικόνα, ελαφρύ κοντράστ μόνο στο κείμενο */
.page-hero-slide--clean .page-hero-slide-title,
.page-hero-slide--clean .page-hero-slide-subtitle {
    text-shadow:
        0 0 1px rgba(0, 0, 0, 0.65),
        0 1px 3px rgba(0, 0, 0, 0.55),
        0 0 24px rgba(0, 0, 0, 0.35);
}

.page-hero-slide--clean .page-hero-slide-subtitle {
    opacity: 1;
}

.page-hero-slide-btn {
    display: inline-block;
    padding: 0.55rem 1.25rem;
    border-radius: 6px;
    background: #22c55e;
    color: #052e16;
    font-weight: 600;
    text-decoration: none;
}

.page-hero-slide-btn:hover {
    filter: brightness(1.06);
}

.page-hero-nav {
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0.35rem;
}

.page-hero-arrow {
    pointer-events: auto;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    border: none;
    background: rgba(15, 23, 42, 0.45);
    color: #f8fafc;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.page-hero-arrow:hover {
    background: rgba(15, 23, 42, 0.65);
}

.page-hero-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.75rem;
    display: flex;
    justify-content: center;
    gap: 0.35rem;
    z-index: 2;
}

.page-hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: none;
    padding: 0;
    background: rgba(248, 250, 252, 0.35);
    cursor: pointer;
}

.page-hero-dot.is-active {
    background: #f8fafc;
    transform: scale(1.15);
}

.page-block--cta {
    padding: 2.5rem 0;
    background-color: #0f172a;
    color: #f1f5f9;
}

.page-block--cta-inner {
    max-width: 40rem;
}

.page-block--cta-actions {
    margin-top: 1rem;
}

.page-faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.5rem;
    background: #fff;
}

.page-faq-q {
    cursor: pointer;
    font-weight: 600;
}

.page-faq-a {
    margin-top: 0.5rem;
    color: #334155;
}

.page-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.5rem;
}

.page-gallery-cell img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
}

.page-testimonial-quote {
    margin: 0 0 0.75rem;
    font-size: 1.15rem;
    line-height: 1.5;
    color: #1e293b;
}

.page-testimonial-meta {
    font-size: 0.95rem;
    color: #64748b;
}

.page-testimonial-author {
    font-style: normal;
    font-weight: 600;
    color: #0f172a;
}

.page-video-frame {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #0f172a;
}

.page-video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.page-video-caption {
    margin: 0.5rem 0 0;
    font-size: 0.9rem;
    color: #64748b;
}

.page-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 1.5rem;
    align-items: start;
}

@media (max-width: 700px) {
    .page-feature-grid {
        grid-template-columns: 1fr;
    }
}

.page-feature-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.page-brands-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.page-brand-item img {
    max-height: 52px;
    width: auto;
    display: block;
    filter: grayscale(0.2);
}

.page-map-frame {
    position: relative;
    padding-bottom: 45%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.page-map-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.page-rich {
    line-height: 1.65;
    color: #2d3748;
}

.page-rich :where(p, ul, ol) {
    margin: 0.65rem 0;
}

.page-rich :where(ul, ol) {
    padding-left: 1.25rem;
}

.page-rich :where(h2, h3, h4) {
    margin: 1rem 0 0.5rem;
    color: #1a202c;
}

/* Admin: full-width visual page designer */
.page-designer-root {
    margin: 0;
    min-height: 100vh;
    background: #0f172a;
}

.page-designer {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    color: #e2e8f0;
}

.page-designer-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0.65rem 1rem;
    background: #020617;
    border-bottom: 1px solid #1e293b;
}

.page-designer-back {
    color: #93c5fd;
    text-decoration: none;
    font-size: 0.9rem;
    margin-right: 0.75rem;
}

.page-designer-back:hover {
    text-decoration: underline;
}

.page-designer-slug code {
    color: #f8fafc;
    font-size: 0.95rem;
}

.page-designer-locale-label {
    margin-left: 1rem;
    font-size: 0.85rem;
    color: #94a3b8;
}

.page-designer-topbar-center {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.page-designer-select {
    margin-left: 0.35rem;
    padding: 0.35rem 0.5rem;
    border-radius: 6px;
    border: 1px solid #334155;
    background: #0f172a;
    color: #f1f5f9;
}

.page-designer-copy-locale {
    border: 1px solid #334155;
    background: #0f172a;
    color: #bfdbfe;
    border-radius: 6px;
    padding: 0.36rem 0.65rem;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 700;
}

.page-designer-copy-locale:hover,
.page-designer-copy-locale:focus-visible {
    border-color: #38bdf8;
    color: #f8fafc;
    outline: none;
}

.page-designer-copy-status {
    color: #86efac;
    font-size: 0.78rem;
}

.page-designer-publish {
    background: #22c55e;
    border: none;
    color: #052e16;
    font-weight: 600;
    padding: 0.45rem 1rem;
    border-radius: 6px;
    cursor: pointer;
}

.page-designer-publish:hover {
    filter: brightness(1.05);
}

.page-designer-flash {
    margin: 0;
    padding: 0.5rem 1rem;
    background: #14532d;
    color: #bbf7d0;
    font-size: 0.9rem;
}

.page-designer-errors {
    margin: 0;
    padding: 0.5rem 1rem 0.5rem 1.5rem;
    background: #450a0a;
    color: #fecaca;
    font-size: 0.9rem;
}

.page-designer-workspace {
    display: grid;
    grid-template-columns: minmax(220px, 280px) 1fr minmax(260px, 320px);
    gap: 0;
    flex: 1;
    min-height: 0;
}

.page-designer-workspace.is-left-collapsed {
    grid-template-columns: 60px 1fr minmax(260px, 320px);
}

.page-designer-workspace.is-right-collapsed {
    grid-template-columns: minmax(220px, 280px) 1fr 60px;
}

.page-designer-workspace.is-left-collapsed.is-right-collapsed {
    grid-template-columns: 60px 1fr 60px;
}

@media (max-width: 1100px) {
    .page-designer-workspace {
        grid-template-columns: 1fr;
    }
}

.page-designer-library,
.page-designer-sidebar-right {
    background: #0f172a;
    border-right: 1px solid #1e293b;
    padding: 0.75rem;
    overflow: auto;
    max-height: calc(100vh - 52px);
}

.page-designer-sidebar-right {
    border-right: none;
    border-left: 1px solid #1e293b;
}

.page-designer-canvas {
    background: #1e293b;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.page-designer-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.page-designer-panel-head .page-designer-panel-title {
    margin: 0;
}

.pd-panel-collapse-btn {
    border: 1px solid #334155;
    background: #020617;
    color: #cbd5e1;
    border-radius: 6px;
    font-size: 0.72rem;
    min-width: 34px;
    min-height: 28px;
    line-height: 1.2;
    padding: 0.2rem 0.45rem;
    cursor: pointer;
    flex-shrink: 0;
}

.pd-panel-collapse-btn:hover {
    border-color: #38bdf8;
    color: #f8fafc;
}

.page-designer-workspace.is-left-collapsed .page-designer-library,
.page-designer-workspace.is-right-collapsed .page-designer-sidebar-right {
    padding-left: 0.35rem;
    padding-right: 0.35rem;
}

.page-designer-workspace.is-left-collapsed .page-designer-library .page-designer-panel-title,
.page-designer-workspace.is-left-collapsed .page-designer-library .page-designer-search,
.page-designer-workspace.is-left-collapsed .page-designer-library .page-designer-catalog,
.page-designer-workspace.is-right-collapsed .page-designer-sidebar-right .page-designer-panel-title,
.page-designer-workspace.is-right-collapsed .page-designer-sidebar-right #pd-block-list,
.page-designer-workspace.is-right-collapsed .page-designer-sidebar-right #pd-inspector,
.page-designer-workspace.is-right-collapsed .page-designer-sidebar-right .pd-revisions {
    display: none;
}

.page-designer-workspace.is-left-collapsed .page-designer-library .page-designer-panel-head,
.page-designer-workspace.is-right-collapsed .page-designer-sidebar-right .page-designer-panel-head {
    justify-content: center;
}

.page-designer-workspace.is-left-collapsed .page-designer-library .pd-panel-collapse-btn,
.page-designer-workspace.is-right-collapsed .page-designer-sidebar-right .pd-panel-collapse-btn {
    margin-top: 0.2rem;
}

.page-designer-panel-title {
    margin: 0 0 0.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #94a3b8;
}

.page-designer-search {
    width: 100%;
    padding: 0.45rem 0.5rem;
    margin-bottom: 0.5rem;
    border-radius: 6px;
    border: 1px solid #334155;
    background: #020617;
    color: #f8fafc;
}

.page-designer-catalog {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
}

.pd-catalog-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 0.45rem 0.5rem;
    border-radius: 6px;
    border: 1px solid #334155;
    background: #020617;
    color: #e2e8f0;
    cursor: pointer;
    font-size: 0.78rem;
}

.pd-catalog-item:hover {
    border-color: #38bdf8;
    background: #0b1224;
}

.pd-catalog-item-label {
    font-weight: 600;
}

.pd-catalog-item-type {
    font-size: 0.7rem;
    color: #64748b;
    text-transform: uppercase;
}

.page-designer-iframe-wrap {
    flex: 1;
    min-height: 420px;
    background: #0f172a;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #334155;
}

.page-designer-iframe {
    width: 100%;
    height: 100%;
    min-height: 520px;
    border: 0;
    background: #fff;
}

.pd-block-list {
    margin-bottom: 1rem;
}

.pd-block-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.35rem 0.45rem;
    margin-bottom: 0.25rem;
    border-radius: 6px;
    border: 1px solid #334155;
    background: #020617;
    cursor: grab;
    font-size: 0.82rem;
}

.pd-block-item.is-active {
    border-color: #38bdf8;
    background: #082f49;
}

.pd-block-item-actions {
    display: flex;
    gap: 0.15rem;
}

.pd-icon-btn {
    border: none;
    background: transparent;
    color: #94a3b8;
    cursor: pointer;
    padding: 0.1rem 0.25rem;
    font-size: 0.85rem;
}

.pd-icon-btn:hover {
    color: #f8fafc;
}

.pd-inspector label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    color: #cbd5e1;
}

.pd-inspector input,
.pd-inspector textarea,
.pd-inspector select {
    width: 100%;
    margin-top: 0.2rem;
    padding: 0.35rem 0.45rem;
    border-radius: 6px;
    border: 1px solid #334155;
    background: #020617;
    color: #f8fafc;
}

.pd-inspector-meta {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #1e293b;
}

.pd-inspector-block-title {
    margin: 0 0 0.5rem;
    font-size: 0.85rem;
    color: #7dd3fc;
}

.pd-hint {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0.25rem 0;
}

.pd-revisions {
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: 1px solid #1e293b;
}

.pd-revision-item {
    display: grid;
    gap: 0.45rem;
    padding: 0.55rem;
    margin-bottom: 0.5rem;
    border: 1px solid #334155;
    border-radius: 8px;
    background: #020617;
}

.pd-revision-meta {
    display: grid;
    gap: 0.2rem;
    font-size: 0.78rem;
    color: #94a3b8;
}

.pd-revision-meta strong {
    color: #e2e8f0;
}

.pd-revision-restore {
    width: 100%;
    border: 1px solid #38bdf8;
    background: rgba(56, 189, 248, 0.08);
    color: #bae6fd;
    border-radius: 6px;
    padding: 0.35rem 0.5rem;
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 700;
}

.pd-revision-restore:hover,
.pd-revision-restore:focus-visible {
    background: rgba(56, 189, 248, 0.16);
    color: #f8fafc;
    outline: none;
}

.pd-repeater-h {
    margin: 0.35rem 0 0.25rem;
    font-size: 0.78rem;
    color: #94a3b8;
}

.pd-repeater-row {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.78rem;
}

.pd-repeater-add {
    margin-top: 0.35rem;
    font-size: 0.8rem;
}

.pd-hero-slide-fieldset,
.pd-kv-fieldset {
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 0.5rem 0.65rem;
    margin-bottom: 0.65rem;
    background: #020617;
}

.pd-hero-slide-fieldset legend,
.pd-kv-fieldset legend {
    padding: 0 0.35rem;
    font-size: 0.78rem;
    color: #94a3b8;
}

.pd-hero-field span,
.pd-kv-field span {
    display: block;
    font-size: 0.72rem;
    color: #94a3b8;
    margin-bottom: 0.15rem;
}

.pd-hero-field--checkbox {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.45rem;
}

.pd-hero-field--checkbox span {
    margin-bottom: 0;
}

.pd-hero-field--checkbox input[type='checkbox'] {
    width: auto;
    margin-top: 0;
}

.pd-hero-slide-actions,
.pd-kv-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.35rem;
}

.pd-mini-btn {
    padding: 0.2rem 0.45rem !important;
    font-size: 0.75rem !important;
}

.pd-upload-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.25rem;
}

.pd-upload-row .pd-upload-path {
    flex: 1 1 120px;
    min-width: 0;
    margin-top: 0;
}

.pd-upload-row .pd-upload-file {
    width: auto;
    max-width: 100%;
    margin-top: 0;
    font-size: 0.72rem;
}

.pd-upload-row .pd-upload-btn {
    flex-shrink: 0;
    margin-top: 0;
}
