
/* -----------------------------------------------------------------------------
   General reset and settings for Bulma 1.0.4
------------------------------------------------------------------------------*/
:root {
    /* Base text colors (keeping Bulma 0.9.x behavior) */
    --bulma-text: #1a1a1a;
    --bulma-text-strong: #1a1a1a;

    /* Main backgrounds */
    --bulma-background: #ffffff;
    --bulma-scheme-main: #ffffff;
    --bulma-scheme-main-bis: #ffffff;
    --bulma-scheme-main-ter: #ffffff;

    /* Surface colors */
    --bulma-surface: #ffffff;
    --bulma-surface-bis: #ffffff;
    --bulma-surface-ter: #ffffff;

    /* Component surfaces */
    --bulma-card-background-color: #ffffff;
    --bulma-navbar-background-color: #ffffff;
    --bulma-dropdown-background-color: #ffffff;
    --bulma-panel-background-color: #ffffff;
    --bulma-box-background-color: #ffffff;

    /* Borders (classic Bulma look) */
    --bulma-border: #dbdbdb;
    --bulma-border-strong: #b5b5b5;
}

html {
    background-color: #ffffff;
}

body {
    background-color: #ffffff;
    color: #1a1a1a;

    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

.title,
.subtitle,
.content,
p,
label,
.label,
strong,
.menu-label,
.menu-list a,
.card-content {
    color: #1a1a1a;
}

.navbar,
.card,
.box,
.menu,
.dropdown-content,
.modal-card,
.panel {
    background-color: #ffffff;
    color: #1a1a1a;
}

.card {
    box-shadow:
        0 1px 5px rgba(10, 10, 10, 0.1),
        0 0 0 0px rgba(10, 10, 10, 0.1);
    height: 100%;
}

.navbar-item,
.navbar-item a {
    color: #1a1a1a;
    background-color: #ffffff;
}

.navbar-item:hover,
.navbar-item a:hover {
    color: #1a1a1a;
    background-color: rgba(255,255,255,0.1);
}
/* Navbar burger – pełne nadpisanie Bulmy przez pseudoelementy */
.navbar-burger {
    display: none !important;
}

@media screen and (max-width: 1023px) {
    .navbar-burger {
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        width: 3.25rem !important;
        height: 3.25rem !important;
        min-width: 3.25rem !important;
        cursor: pointer !important;
        background: none !important;
        border: none !important;
        gap: 0 !important;
    }
}

.navbar-burger span {
    display: none !important;
}

.navbar-burger::before,
.navbar-burger::after {
    content: '' !important;
    display: block !important;
    width: 22px !important;
    height: 2px !important;
    background-color: #1a1a1a !important;
    transition: transform 0.3s ease !important;
    position: absolute !important;
    left: 50% !important;
    margin-left: -11px !important;
}

.navbar-burger::before {
    top: calc(50% - 7px) !important;
}

.navbar-burger::after {
    top: calc(50% + 5px) !important;
}

.navbar-burger .burger-mid {
    display: block !important;
    width: 22px !important;
    height: 2px !important;
    background-color: #1a1a1a !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    margin-left: -11px !important;
    margin-top: -1px !important;
    transition: opacity 0.2s ease !important;
}

.navbar-burger.is-active::before {
    top: 50% !important;
    margin-top: -1px !important;
    transform: rotate(45deg) !important;
}

.navbar-burger.is-active::after {
    top: 50% !important;
    margin-top: -1px !important;
    transform: rotate(-45deg) !important;
}

.navbar-burger.is-active .burger-mid {
    opacity: 0 !important;
}


/* -----------------------------------------------------------------------------
   Multiple pages
------------------------------------------------------------------------------*/
.section {
    border-bottom: 0px solid #1a1a1a;
    padding-top: 120px;
    padding-bottom: 80px;
}
.section-small {
    border-bottom: 0px solid #1a1a1a;
    padding-top: 60px;
    padding-bottom: 20px;
}
.section-label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.section-custom-bg-white {
    position: relative;
    overflow: hidden;
    background-color: #ffffff !important;
    border: none !important;
}
.section-custom-bg-lightgray {
    position: relative;
    overflow: hidden;
    background-color: #fafafa !important;
    border: none !important;
}
.title.is-2 {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.2;
    padding-bottom: 40px;
}
.title.is-4 {
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1;
    padding-bottom: 10px;
}
.title.is-5 {
    font-weight: 300;
}
.subtitle {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 300;
}
.card-noshadow {
    box-shadow: none;
    background: transparent;
}
.call-to-action-bg {
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%), center / cover !important;*/
    background: linear-gradient(135deg, #1a1a1a 0%, #2a3a20 100%), center / cover !important;
    color: white;
}
.box-small {
    font-size: 0.9rem;
    background-color: #fafafa !important;
}
footer {
    padding-top: 80px;
    padding-bottom: 50px;
}
footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
footer ul li {
    margin-bottom: 0.25rem;
}
.button.is-outlined {
    border: 0px solid #1a1a1a;
    border-radius: 8px;
    color: #1a1a1a;
    background-color: #E2F3F3;
    font-weight: 400;
    padding: 1.5rem 2rem;
    height: auto;
}
.button.is-outlined:hover {
    border: 0px;
    color: #1a1a1a;
    background-color: #eaf7f1;
}
.button.custom-light {
    border: 0px solid #1a1a1a;
    border-radius: 8px;
    color: #1a1a1a;
    background-color: #E2F3F3;
    font-weight: 400;
    padding: 1rem 2rem;
    height: auto;
}
.button.custom-light:hover {
    color: #1a1a1a;
    background-color: #AAE1C1;
}
.button.custom-dark {
    border: 0px solid #1a1a1a;
    border-radius: 8px;
    color: #fafafa;
    background-color: #14161A;
    font-weight: 400;
    padding: 1rem 2rem;
    height: auto;
}
.button.custom-dark:hover {
    color: #fafafa;
    background-color: #404040;
}

/* -----------------------------------------------------------------------------
   Single page usage: Overview
------------------------------------------------------------------------------*/
.hero-banner {
    background:
      linear-gradient(rgba(0,0,0,.3), rgba(0,0,0,.3)),
      url('../img/overview_banner.jpg')
      center / cover !important;
}
.hero-banner .hero-body {
    padding: 4.5rem 4.5rem 3.5rem;
}
.hero-banner .title {
    font-size: 2.8rem;
    font-weight: 300;
}
@media screen and (max-width: 768px) {
    .hero-banner .hero-body { padding: 3rem 1.5rem 2.5rem; }
    .hero-banner .title { font-size: 1.9rem; }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
    .hero-banner .hero-body { padding: 4rem 3rem 3rem; }
    .hero-banner .title { font-size: 2.3rem; }
}
.hero-text-shadow {
    text-shadow:2px 2px 4px rgba(0,0,0,.5);
}
.hero-black-bg {
  background-image: linear-gradient(to right, rgba(0,0,0,0),rgba(0,0,0,0.8),rgba(0,0,0,0));
  padding: 0.5rem;
  border-radius: 0.5rem;
}
.hero-section {
    background-color: #f5f5f0;
    padding: 10rem 1.5rem;
}
.image-custom-style {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.box-highlight {
    background-color: #ecfdf5;
    border-left: 4px solid #10b981;
    color: white;
    padding: 2rem;
}
.box-fullheight {
    height: 100%;
}
.card-custom-padding {
    padding: 2rem 0.5rem;
}

/* -----------------------------------------------------------------------------
   Single page usage: Sample (Catalog)
------------------------------------------------------------------------------*/
.catalog-container {
    max-width: 1100px;
    margin: 0 auto;
}
.catalog-img-fixed {
    width: 400px !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    height: auto !important;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: block;
}
.product-row {
    margin-bottom: 5rem !important;
}
.text-column-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.img-column-left { display: flex; justify-content: flex-start; }
.img-column-right { display: flex; justify-content: flex-end; }

/* Cookie banner buttons: side by side on desktop */
#cookie-buttons {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 0.5rem;
}
#cookie-buttons .button {
    flex: 0 0 auto;
    white-space: nowrap;
}

@media screen and (max-width: 768px) {
    .catalog-img-fixed { width: 100% !important; }
    .has-text-right-tablet { text-align: left !important; }
    .is-justify-content-flex-end { justify-content: flex-start !important; }

    /* Footer: padding from screen edges */
    footer .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    /* Policy / section-small: side padding on mobile */
    .section-small .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    /* Implementation steps: image above text, centered */
    .box .media {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .box .media .media-left {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    .box .media .media-content {
        width: 100%;
    }

    /* Feature icon boxes: center icon, title and text */
    .box.fade-in-bottom {
        text-align: center;
    }

    /* Sample data-point: stack label above value on mobile */
    .data-point {
        flex-direction: column;
        gap: 0.2rem;
    }

    /* DPP ID URL: break long strings on mobile */
    .is-family-monospace {
        word-break: break-all;
    }

    /* Sample banner: stack and center on mobile */
    .sample-dpp-header .columns {
        flex-direction: column;
    }
    .sample-dpp-header .column.is-6 {
        width: 100%;
    }
    .sample-dpp-header .is-flex {
        flex-direction: column;
        align-items: center !important;
        text-align: center;
    }
    .sample-dpp-header .is-flex > div[style] {
        border-left: none !important;
        padding-left: 0 !important;
        margin-right: 0 !important;
        margin-top: 0.5rem;
        text-align: center;
    }
    .sample-dpp-header .column.is-6.has-text-right {
        text-align: center !important;
        margin-top: 1rem;
    }
    .sample-dpp-header .is-justify-content-flex-end {
        justify-content: center !important;
    }
    .sample-dpp-header .has-text-right {
        text-align: center !important;
    }
    .sample-dpp-header .column.is-7 {
        text-align: center;
    }
    .sample-dpp-header .column.is-7 .tags {
        justify-content: center;
    }

    /* Stacked responsive tables on mobile */
    .table.is-compact thead {
        display: none;
    }
    .table.is-compact tbody tr {
        display: block;
        border: 1px solid #dbdbdb;
        border-radius: 6px;
        margin-bottom: 0.75rem;
        padding: 0.5rem;
    }
    .table.is-compact tbody td {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 0.4rem 0.5rem;
        border-bottom: 1px solid #f5f5f5;
        font-size: 0.8rem;
    }
    .table.is-compact tbody td:last-child {
        border-bottom: none;
    }
    .table.is-compact tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #4a4a4a;
        flex-shrink: 0;
        min-width: 40%;
    }
    /* Reset borders from Bulma's is-bordered on stacked mobile tables */
    .table.is-compact.is-bordered tbody tr {
        border: 1px solid #dbdbdb;
    }
    .table.is-compact.is-bordered tbody td {
        border: none;
        border-bottom: 1px solid #f5f5f5;
    }
    .table.is-compact.is-bordered tbody td:last-child {
        border-bottom: none;
    }

    /* Sample: center back button on mobile */
    .buttons .button.custom-light {
        display: inline-flex !important;
        width: auto !important;
        margin: 0 !important;
    }

    /* Cookie banner: stack full width on mobile/tablet */
    #cookie-buttons {
        flex-direction: column;
        justify-content: stretch;
    }
    #cookie-buttons .button {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
    .container > div[style] > .button.custom-light {
        display: block !important;
        width: fit-content !important;
        margin: 0 auto !important;
    }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
    /* Footer: padding from screen edges on tablet */
    footer .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    /* Policy / section-small: side padding on tablet */
    .section-small .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    /* Sample product header: stack columns on tablet to avoid overlap */
    .sample-dpp-header .columns.is-vcentered {
        flex-wrap: wrap;
    }
    .sample-dpp-header .column.is-7 {
        width: 100%;
        flex: none;
    }
    .sample-dpp-header .column.is-2,
    .sample-dpp-header .column.is-3 {
        width: 50%;
        flex: none;
    }
    .sample-dpp-header .column.is-3 {
        text-align: center !important;
    }

    /* Cookie banner: stack full width on tablet */
    #cookie-buttons {
        flex-direction: column;
        justify-content: stretch;
    }
    #cookie-buttons .button {
        width: 100%;
        max-width: 100%;
    }
}


/* -----------------------------------------------------------------------------
   Single page usage: Sample
------------------------------------------------------------------------------*/
.sample-dpp-page {
    background:#fff;
    max-width:1100px;
    margin:2rem auto;
    padding:3rem;
    box-shadow:0 8px 30px rgba(0,0,0,.05);
}
.sample-dpp-header {
    border-bottom:1px solid #e5e5e5;
    margin-bottom:2rem;
    padding-bottom:1.5rem;
}
.sample-dpp-section {
    margin-bottom:3rem;
}
.sample-dpp-section-title {
    font-size:1.4rem;
    font-weight:600;
    margin-bottom:.75rem;
}
.burden-section {
    background-color: #fafafa;
    border-top: 0px solid #e1e8ed;
    border-bottom: 0px solid #e1e8ed;
    padding: 5rem 1.5rem;
}
.burden-section-right {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: none;
    padding: 2.5rem;
}
.data-point {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f5f5f5;
}

.data-point:last-child {
    border-bottom: none;
}

.data-label {
    font-weight: 600;
    color: #4a4a4a;
}
.dpp-meta {
    font-size:.85rem;
    color:#666;
}
.figure-thumb {
    width:100%;
    max-width:260px;
    border-radius:6px;
    margin-top:.75rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.card-content .title.is-6 {
    text-align: center;
}
.table.is-compact td, .table.is-compact th {
    padding:.5em .75em;
    font-size:.85rem;
}
hr.light {
    border:none;
    border-top:1px solid #eee;
    margin:2rem 0;
}
.sample-disclaimer-footer {
    display: flex;
    justify-content: center;
    margin: 2rem 1.5rem;
}
.sample-disclaimer-inner {
    background-color: #ffe6f0;
    border-radius: 6px;
    max-width: 1100px;
    width: 100%;
    padding: 1.25rem 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #5a2b3a;
}

@media screen and (max-width: 768px) {
    .sample-disclaimer-footer {
        margin: 1.5rem 1.25rem;
    }
    .sample-disclaimer-inner {
        padding: 1rem 1.1rem;
        border-radius: 6px;
    }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
    .sample-disclaimer-footer {
        margin: 2rem 2rem;
    }
    .sample-disclaimer-inner {
        padding: 1.25rem 1.5rem;
    }
}

/* -----------------------------------------------------------------------------
   DPP Role-Based Access Tabs
------------------------------------------------------------------------------*/
.dpp-role-switcher {
    background: #ffffff;
    max-width: 1100px;
    margin: 1.5rem auto 0;
    padding: 0 3rem;
}
.dpp-role-switcher-inner {
    border-bottom: 2px solid #e8e8e8;
    display: flex;
    align-items: flex-end;
    gap: 0;
    flex-wrap: wrap;
}
.dpp-role-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #888;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0 0 0.6rem 0;
    margin-right: 1rem;
    white-space: nowrap;
    align-self: center;
}
.dpp-role-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1.1rem;
    font-size: 0.82rem;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    color: #6b7280;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
    margin-bottom: -2px;
    white-space: nowrap;
}
.dpp-role-tab:hover {
    color: #1a1a1a;
    border-bottom-color: #d1d5db;
}
.dpp-role-tab.is-active {
    color: #00d1b2;
    border-bottom-color: #00d1b2;
    font-weight: 600;
}
.dpp-role-tab .dpp-role-icon {
    font-size: 0.9rem;
}

/* Access badges on sections */
.dpp-access-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.2rem 0.55rem;
    border-radius: 20px;
    margin-left: 0.75rem;
    vertical-align: middle;
    opacity: 0.75;
    line-height: 1;
}
.dpp-access-badge.badge-public {
    background: #e8fdf7;
    color: #00875a;
    border: 1px solid #b3ead9;
}
.dpp-access-badge.badge-technician {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}
.dpp-access-badge.badge-recycler {
    background: #fff7ed;
    color: #c2410c;
    border: 1px solid #fed7aa;
}
.dpp-access-badge.badge-auditor {
    background: #fdf4ff;
    color: #7e22ce;
    border: 1px solid #e9d5ff;
}

/* Section visibility by role */
.dpp-section-block {
    transition: opacity 0.25s;
}
.dpp-section-block.is-restricted {
    opacity: 0.28;
    pointer-events: none;
    user-select: none;
    filter: blur(1.5px);
    position: relative;
}
.dpp-lock-overlay {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 2;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.5);
    border-radius: 6px;
}
.dpp-section-block.is-restricted .dpp-lock-overlay {
    display: flex;
}
.dpp-lock-msg {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #6b7280;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* "All roles" view - show access badge inline */
.dpp-view-all .dpp-section-block.is-restricted {
    opacity: 1;
    filter: none;
    pointer-events: auto;
}
.dpp-view-all .dpp-lock-overlay {
    display: none !important;
}

/* -----------------------------------------------------------------------------
   Other
------------------------------------------------------------------------------*/
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    background-color: #fafafa !important;
    padding-top: 15px;
    padding-bottom: 15px;
    border-top: 1px solid #e1e8ed;
}
.step-number {
    background: #00d1b2;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-weight: bold;
}
.icon-box {
    background: #f5f5f5;
    padding: 2rem;
    border-radius: 8px;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.icon-box .icon {
    font-size: 3rem;
    color: #00d1b2;
    margin-bottom: 1rem;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.box-small {
    font-size: 0.9rem;
    background-color: #fafafa !important;
}
.p-small {
    font-size: 1.1rem;
}

/* -----------------------------------------------------------------------------
   Hide reCAPTCHA v3 badge (allowed per Google ToS when reCAPTCHA branding
   is retained in the form via .contact-form-recaptcha-note)
------------------------------------------------------------------------------*/
.grecaptcha-badge {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}


/* =============================================================================
   MODERN ENHANCEMENTS - Overview & Implementation pages
   Added 2026-03 / sopv2
============================================================================= */

/* --- Global: Bulma title font-weight override (default 600 → lighter) --- */
.title.is-1 { font-weight: 300; }
.title.is-2 { font-weight: 300; }
.title.is-3 { font-weight: 400; }

/* --- Section label tag (uppercase accent above headings) --- */
.section-label-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #00d1b2;
    margin-bottom: 0.75rem;
}

.section-subtitle-muted {
    max-width: 1400px;
    margin: 0 auto;
    color: #6b7280;
}

/* --- Hero stats bar --- */
.hero-stats-bar {
    background: rgba(0,0,0,0.62);
    padding: 1rem 1.5rem;
}
.hero-stats-bar .hero-stats-inner {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 960px;
    margin: 0 auto;
}
.hero-stat-item { text-align: center; }
.hero-stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00d1b2;
    line-height: 1;
}
.hero-stat-desc {
    display: block;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.78);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

/* --- Value proposition cards --- */
.value-prop-card {
    padding: 2rem;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.07);
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}
.value-prop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}
.value-prop-icon {
    width: 52px;
    height: 52px;
    background: #e8fdf7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #00d1b2;
    margin-bottom: 1.25rem;
}
.value-prop-tags {
    margin-top: 1.25rem;
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}
.value-prop-card .is-size-7 { font-size: 0.82rem !important; }

/* --- Supply chain visualizer --- */
.supply-chain-flow {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    background: #f9fafb;
    border-radius: 10px;
    justify-content: center;
}
.chain-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.chain-step-icon {
    width: 48px;
    height: 48px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #00d1b2;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.chain-step-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
}
.chain-step-label small {
    display: block;
    font-weight: 400;
    color: #9ca3af;
    font-size: 0.64rem;
    margin-top: 0.1rem;
}
.chain-arrow {
    color: #d1d5db;
    font-size: 0.85rem;
    padding: 0 0.75rem;
    align-self: flex-start;
    margin-top: 14px;
}

/* --- Stats pair --- */
.stats-pair {
    display: flex;
    align-items: stretch;
    background: #f9fafb;
    border-radius: 10px;
    overflow: hidden;
}
.stat-pair-item {
    flex: 1;
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.stat-pair-number {
    font-size: 2rem;
    font-weight: 700;
    color: #00d1b2;
    line-height: 1;
}
.stat-pair-desc {
    font-size: 0.78rem;
    color: #6b7280;
    line-height: 1.4;
}
.stat-pair-desc small {
    display: block;
    margin-top: 0.2rem;
    color: #9ca3af;
    font-size: 0.67rem;
}
.stat-pair-divider {
    width: 1px;
    background: #e5e7eb;
    margin: 0.75rem 0;
}

/* --- Feature tabs (Overview carousel) --- */
.ov-tab-nav {
    display: flex;
    border-bottom: 2px solid #e8e8e8;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.ov-tab-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.84rem;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    color: #6b7280;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
    margin-bottom: -2px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.ov-tab-btn:hover { color: #1a1a1a; border-bottom-color: #d1d5db; }
.ov-tab-btn.is-active { color: #00d1b2; border-bottom-color: #00d1b2; font-weight: 600; }

/* --- Carousel slides --- */
.ov-slide { display: none; }
.ov-slide.is-active {
    display: block;
    animation: ovFadeIn 0.55s ease forwards;
}
@keyframes ovFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
    .ov-slide.is-active { animation: none; }
}
.ov-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}
.ov-carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
    background: #ffffff;
    color: #4a4a4a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-size: 0.85rem;
}
.ov-carousel-btn:hover { border-color: #00d1b2; color: #00d1b2; }
.ov-dots { display: flex; gap: 0.5rem; align-items: center; }
.ov-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
}
.ov-dot.is-active { background: #00d1b2; width: 24px; border-radius: 4px; }

/* --- Slide label badge --- */
.ov-slide-label {
    display: inline-flex;
    align-items: center;
    background: #e8fdf7;
    color: #00875a;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    letter-spacing: 0.04em;
}

/* --- Slide info box --- */
.slide-info-box {
    background: #f9fafb;
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
}
.slide-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.slide-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.86rem;
    line-height: 1.5;
}
.slide-info-list li:last-child { border-bottom: none; }
.slide-info-list li i { color: #00d1b2; margin-top: 2px; flex-shrink: 0; width: 14px; }

/* --- Feature 2x2 grid (inside carousel slides) --- */
.feat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
    margin-top: 1.5rem;
}
.feat-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.feat-icon {
    width: 34px;
    height: 34px;
    background: #e8fdf7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #00d1b2;
    flex-shrink: 0;
}
.feat-content h4 { font-size: 0.84rem; font-weight: 600; color: #1a1a1a; margin: 0; line-height: 1.3; }
.feat-content p { font-size: 0.76rem; color: #6b7280; margin: 0.1rem 0 0; line-height: 1.4; }

/* --- Stats level bar --- */
.stats-level {
    background: #f9fafb;
    border-radius: 10px;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
}
.stats-level .level-item .title {
    font-size: 1.1rem;
    padding-bottom: 0;
}
.stats-level .level-item .heading {
    font-size: 0.7rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #9ca3af;
}

/* --- Implementation: 4-step process grid --- */
.impl-steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: stretch;
    margin: 2.5rem 0;
}
.impl-step-card {
    text-align: center;
    padding: 1.75rem 1.25rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
}
.impl-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.impl-step-num {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    color: #00d1b2;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}
.impl-step-icon {
    width: 56px;
    height: 56px;
    background: #e8fdf7;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #00d1b2;
    margin: 0 auto 1rem;
}
.impl-step-title { font-size: 1rem; font-weight: 600; color: #1a1a1a; margin-bottom: 0.5rem; }
.impl-step-desc { font-size: 0.86rem; color: #6b7280; line-height: 1.5; }
.impl-step-connector {
    display: flex;
    align-items: flex-start;
    padding-top: 3.5rem;
    padding-left: 0.3rem;
    padding-right: 0.3rem;
    color: #d1d5db;
    font-size: 1rem;
}

/* --- Implementation: lifecycle timeline --- */
.lifecycle-timeline {
    position: relative;
    padding-left: 3.25rem;
}
.lifecycle-timeline::before {
    content: '';
    position: absolute;
    left: 1.05rem;
    top: 1rem;
    bottom: 1rem;
    width: 2px;
    background: linear-gradient(to bottom, #00d1b2 0%, #e5e7eb 100%);
}
.timeline-item { position: relative; margin-bottom: 2rem; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-marker {
    position: absolute;
    left: -2.6rem;
    top: 0.15rem;
    width: 2.2rem;
    height: 2.2rem;
    background: #00d1b2;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: 0 0 0 4px #e8fdf7;
    z-index: 1;
}
.timeline-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    border-left: 3px solid #00d1b2;
    transition: box-shadow 0.2s;
}
.timeline-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
.timeline-img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}
.timeline-content h3 { font-size: 1rem; font-weight: 600; color: #1a1a1a; margin: 0 0 0.4rem; }
.timeline-meta { display: flex; flex-direction: column; gap: 0.2rem; }
.timeline-meta p { font-size: 0.82rem; color: #6b7280; line-height: 1.5; margin: 0; }
.timeline-meta strong { color: #4a4a4a; }

/* --- Implementation: doc categories list --- */
.doc-category-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f5f5f5;
}
.doc-category-item:last-child { border-bottom: none; }
.doc-cat-icon {
    width: 40px;
    height: 40px;
    background: #e8fdf7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #00d1b2;
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.doc-cat-title { font-size: 0.9rem; font-weight: 600; color: #1a1a1a; margin-bottom: 0.15rem; }
.doc-cat-desc { font-size: 0.82rem; color: #6b7280; line-height: 1.4; }

/* --- Implementation: data retention cards --- */
.retention-card {
    padding: 1.5rem;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border-top: 3px solid #00d1b2;
    height: 100%;
}
.retention-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #00875a;
    background: #e8fdf7;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}
.retention-card p { font-size: 0.82rem; }
.retention-card .content li { font-size: 0.82rem; }

/* --- Implementation: solution feature items --- */
.solution-feat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}
.solution-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}
.solution-feat-item:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.1); }
.solution-feat-icon {
    width: 44px;
    height: 44px;
    background: #e8fdf7;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #00d1b2;
    flex-shrink: 0;
}
.solution-feat-text h4 { font-size: 0.95rem; font-weight: 600; color: #1a1a1a; margin: 0 0 0.25rem; }
.solution-feat-text p { font-size: 0.86rem; color: #6b7280; margin: 0; line-height: 1.5; }

/* --- Compliance highlight box --- */
.compliance-highlight {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a3a20 100%);
    border-radius: 12px;
    padding: 2rem 2.5rem;
    color: #ffffff;
}
.compliance-highlight p { color: rgba(255,255,255,0.82); line-height: 1.7; }
.compliance-highlight strong { color: #ffffff; }

/* --- Stakeholder cards (Who Needs DPP) --- */
.stakeholder-card {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    padding: 1.25rem 1.4rem;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border-left: 4px solid #00d1b2;
    height: 100%;
    transition: box-shadow 0.2s, transform 0.2s;
}
.stakeholder-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}
.stakeholder-icon-wrap {
    width: 48px;
    height: 48px;
    background: #e8fdf7;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #00d1b2;
    flex-shrink: 0;
}
.stakeholder-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.35rem;
}
.stakeholder-regs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
}
.stakeholder-reg {
    font-size: 0.67rem;
    font-weight: 700;
    color: #00875a;
    background: #e8fdf7;
    padding: 0.15rem 0.5rem;
    border-radius: 20px;
    border: 1px solid #b3ead9;
    letter-spacing: 0.03em;
}
.stakeholder-desc {
    font-size: 0.88rem;
    color: #6b7280;
    line-height: 1.55;
    margin: 0;
}
.stakeholder-deadline {
    font-size: 0.72rem;
    font-weight: 600;
    color: #4a4a4a;
    margin-top: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.stakeholder-deadline i { color: #00d1b2; }

/* --- Lifecycle grid (What the Product Lifecycle Requires) --- */
.lifecycle-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
}
.lifecycle-card-modern {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s;
}
.lifecycle-card-modern:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}
.lifecycle-card-header {
    background: #f9fafb;
    padding: 0.85rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    border-bottom: 2px solid #e8fdf7;
}
.lifecycle-step-badge {
    width: 26px;
    height: 26px;
    background: #00d1b2;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.74rem;
    font-weight: 700;
    flex-shrink: 0;
}
.lifecycle-step-icon {
    font-size: 0.9rem;
    color: #00d1b2;
    width: 16px;
    text-align: center;
}
.lifecycle-step-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}
.lifecycle-card-body {
    padding: 0.9rem 1.1rem;
}
.lifecycle-req-label {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #404040;
    margin-bottom: 0.3rem;
}
.lifecycle-req-label.is-second {
    margin-top: 0.7rem;
    padding-top: 0.7rem;
    border-top: 1px solid #f5f5f5;
}
.lifecycle-req-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.lifecycle-req-list li {
    font-size: 0.84rem;
    color: #4a4a4a;
    padding: 0.18rem 0;
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    line-height: 1.4;
}
.lifecycle-req-list li::before {
    content: '\2022';
    color: #00d1b2;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 0.9rem;
    line-height: 1;
}

/* --- Responsive overrides --- */
@media screen and (max-width: 768px) {
    .hero-stats-bar .hero-stats-inner { gap: 1.25rem; }
    .hero-stat-number { font-size: 1.2rem; }
    .supply-chain-flow { flex-wrap: wrap; justify-content: center; gap: 0.5rem; padding: 1rem 0.5rem; }
    .chain-arrow { display: none; }
    .chain-step-item { flex: 0 0 auto; min-width: 80px; }
    .stats-pair { flex-direction: column; }
    .stat-pair-divider { width: 100%; height: 1px; margin: 0; }
    .ov-tab-nav { flex-wrap: wrap; gap: 0.4rem; }
    .ov-tab-btn { padding: 0.6rem 0.75rem; font-size: 1rem; }
    .feat-grid { grid-template-columns: 1fr; }
    .impl-steps-grid { grid-template-columns: 1fr; gap: 1rem; }
    .impl-step-connector { display: none; }
    .impl-step-card { text-align: left; display: flex; align-items: flex-start; gap: 1rem; padding: 1rem; }
    .impl-step-icon { margin: 0; flex-shrink: 0; }
    .lifecycle-grid-modern { grid-template-columns: 1fr; }
    .lifecycle-card-header { padding: 0.75rem 0.9rem; }
    .lifecycle-card-body { padding: 0.75rem 0.9rem; }
    .lifecycle-timeline { padding-left: 2.25rem; }
    .lifecycle-timeline::before { left: 0.6rem; }
    .timeline-marker { left: -1.9rem; width: 1.8rem; height: 1.8rem; font-size: 1rem; }
    .timeline-card { flex-direction: column; gap: 0.75rem; }
    .timeline-img { width: 100%; height: 160px; }
    .stats-level { padding: 1rem; }
    .stats-level .level { flex-direction: row !important; flex-wrap: wrap; gap: 1rem; }
    .compliance-highlight { padding: 1.5rem; }
    .img-platform { height: 220px !important; }
    .stakeholder-card { padding: 1rem; gap: 0.75rem; }
    .stakeholder-icon-wrap { width: 40px; height: 40px; font-size: 1rem; }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
    .impl-steps-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
    .impl-step-connector { display: none; }
    .feat-grid { grid-template-columns: 1fr; }
    .hero-stats-bar .hero-stats-inner { gap: 1.5rem; }
    .lifecycle-grid-modern { grid-template-columns: 1fr 1fr; }
    .supply-chain-flow { flex-wrap: wrap; gap: 0.5rem; }
    .chain-arrow { padding: 0 0.2rem; font-size: 1rem; }
}

/* --- Implementation hero redesign --- */
.impl-hero-h1 {
    font-size: 1.5rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 1.25rem;
}
.impl-hero-lead {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 1.0rem;
    max-width: 500px;
}
.impl-hero-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem 2rem;
    margin-bottom: 0.25rem;
}
.impl-hero-bullets div {
    font-size: 0.84rem;
    font-weight: 500;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.impl-hero-bullets div i {
    color: #00d1b2;
    font-size: 0.7rem;
    flex-shrink: 0;
}
.impl-hero-visual {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.14);
}
.impl-hero-visual img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center;
    display: block;
}
.impl-hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(14, 16, 20, 0.86);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    padding: 1.1rem 1.5rem;
}
.impl-hero-stat {
    flex: 1;
    text-align: center;
}
.impl-hero-stat span {
    display: block;
    font-size: 1.55rem;
    font-weight: 700;
    color: #00d1b2;
    line-height: 1;
    letter-spacing: -0.02em;
}
.impl-hero-stat small {
    display: block;
    font-size: 0.63rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.3rem;
    line-height: 1.35;
}
.impl-hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.12);
    margin: 0 1rem;
    flex-shrink: 0;
}
@media screen and (max-width: 768px) {
    .impl-hero-h1 { font-size: 1.9rem; }
    .impl-hero-lead { font-size: 1rem; max-width: 100%; }
    .impl-hero-bullets { grid-template-columns: 1fr; gap: 0.45rem; }
    .impl-hero-visual img { height: 260px; }
    .impl-hero-stat small { display: none; }
    .impl-hero-stats { padding: 0.6rem 1rem; }
    .impl-hero-stat span { font-size: 1.1rem; }
    .impl-hero-stat-divider { height: 28px; margin: 0 0.6rem; }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
      .impl-hero-h1 { font-size: 2.1rem; }
      .impl-hero-visual img { height: 360px; }
      .impl-hero-bullets { gap: 0.5rem 1.25rem; }
      .impl-hero-stat small { display: none; }
      .impl-hero-stats { padding: 0.6rem 0.9rem; }
      .impl-hero-stat span { font-size: 1.15rem; }
      .impl-hero-stat-divider { height: 26px; margin: 0 0.6rem; }
  }

/* --- Section 6: equal-height magazine split --- */
.impl-split { align-items: stretch; }
.impl-split > .column { display: flex; flex-direction: column; }
.impl-split-img-wrap {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    min-height: 320px;
}
.impl-split-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}
.impl-split-highlight {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 0;
}
@media screen and (max-width: 768px) {
    .impl-split { align-items: initial; }
    .impl-split > .column { display: block; }
    .impl-split-img-wrap { flex: none; min-height: unset; height: 220px; border-radius: 12px; }
    .impl-split-highlight { margin-top: 1.25rem; flex: none; }
}

/* --- About page --- */
.about-hero-visual {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.13);
}
.about-hero-visual img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}
.about-deeplai-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    color: #1a1a1a;
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}
.about-deeplai-link:hover {
    background: #e8fdf7;
    border-color: #00d1b2;
    color: #00875a;
}
.about-deeplai-link i { color: #00d1b2; flex-shrink: 0; }
.about-deeplai-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: #00875a;
    background: #e8fdf7;
    border: 1px solid #b3ead9;
    padding: 0.15rem 0.6rem;
    border-radius: 20px;
    flex-shrink: 0;
    letter-spacing: 0.02em;
}
.about-info-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    height: 100%;
    overflow: hidden;
}
.about-info-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.5rem;
    background: #f9fafb;
    border-bottom: 2px solid #e8fdf7;
}
.about-info-icon {
    width: 44px;
    height: 44px;
    background: #e8fdf7;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #00d1b2;
    flex-shrink: 0;
}
.about-info-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    font-weight: 300;
}
.about-info-body { padding: 1.25rem 1.5rem; }
.about-info-body p {
    font-size: 0.93rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.about-info-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}
.about-info-tags .tag {
    font-size: 0.72rem;
    background: #f3f4f6;
    color: #4a4a4a;
}
.about-info-tags .tag i { color: #00d1b2; }
.about-info-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    display: block;
}
@media screen and (max-width: 768px) {
    .about-hero-visual img { height: 240px; }
    .about-info-img { height: 160px; }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
    .about-hero-visual img { height: 320px; }
    .about-info-img { height: 180px; }
}

/* --- Marquee strip (overview page) --- */
.marquee-section {
    padding: 1.5rem 0;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    overflow: hidden;
}
.marquee-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9ca3af;
    text-align: center;
    margin-bottom: 1rem;
}
.sop-marquee-wrapper {
    overflow: hidden;
    width: 100%;
}
.sop-marquee-track {
    display: flex;
    width: max-content;
    animation: sop-marquee 32s linear infinite;
}
.sop-marquee-track:hover { animation-play-state: paused; }
@keyframes sop-marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.sop-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    white-space: nowrap;
    border-right: 1px solid #e5e7eb;
}
.sop-marquee-item i { color: #00d1b2; }
@media (prefers-reduced-motion: reduce) {
    .sop-marquee-track { animation: none; }
}
.about-company-card {
    background: linear-gradient(135deg, #14161a 0%, #1a2e18 100%);
    border-radius: 14px;
    padding: 2.5rem 3rem;
}
.about-company-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255,255,255,0.08);
    padding-right: 2rem;
}
.about-company-logo {
    max-width: 140px;
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 0.75rem;
}
.about-company-icon {
    width: 64px;
    height: 64px;
    background: rgba(0,209,178,0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #00d1b2;
    margin: 0 auto 0.9rem;
}
.about-company-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.04em;
}
.about-company-tagline {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.3rem;
}
.about-company-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.75;
}
.about-company-text strong { color: #ffffff; }
@media screen and (max-width: 768px) {
    .about-company-card { padding: 1.75rem; }
    .about-company-brand {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        padding-right: 0;
        padding-bottom: 1.25rem;
        margin-bottom: 0.25rem;
        text-align: left;
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    .about-company-icon { margin: 0; flex-shrink: 0; }
}
