:root {
    --brand-primary: #0d2544;
    --brand-primary-dark: #071529;
    --brand-accent: #c41e3a;
}

body {
    background: #ffffff;
    color: #1f2a37;
}

header {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 70%);
    color: #fff;
    box-shadow: 0 12px 30px rgba(4, 12, 24, 0.35);
}

.header {
    background: transparent;
}

.hero {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: 0 25px 60px rgba(13, 37, 68, 0.12);
    margin-top: 2.5rem;
    margin-bottom: 2rem;
}

.page {
    margin-top: 2rem;
}

.hero__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    color: var(--brand-accent);
    margin-bottom: 0.75rem;
    display: inline-block;
}

.hero__title {
    font-size: 2.25rem;
    line-height: 1.25;
    color: var(--brand-primary-dark);
    margin-bottom: 1rem;
}

.hero__text {
    font-size: 1.05rem;
    color: #2b3550;
    margin-bottom: 1.25rem;
}

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

.stat-card {
    background: #f5f7fb;
    border-radius: 18px;
    padding: 1.5rem;
    border: 1px solid rgba(13, 37, 68, 0.08);
}

.stat-card__label {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.75rem;
    color: #58627a;
}

.stat-card__value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-primary);
}

.stat-card__list {
    margin: 0.75rem 0 0;
    padding-left: 1rem;
    color: #2b3550;
    line-height: 1.6;
}

.stat-card__list li {
    margin-bottom: 0.25rem;
}

.spotlight {
    background: #fff;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(7, 21, 41, 0.1);
    margin-bottom: 2rem;
}

.spotlight__title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--brand-primary-dark);
}

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

.product-card {
    border: 1px solid rgba(13, 37, 68, 0.12);
    border-radius: 18px;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(12, 37, 68, 0.04), rgba(196, 30, 58, 0.04));
}

.product-card h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: var(--brand-primary-dark);
}

.product-card ul {
    margin: 0;
    padding-left: 1.1rem;
    color: #1f2a37;
    line-height: 1.5;
}

.product-card ul li {
    margin-bottom: 0.35rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.section-heading {
    margin-bottom: 1.25rem;
    background: #fff;
}

.section-label {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: var(--brand-accent);
}

.product-intro {
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem 2rem;
    box-shadow: 0 20px 45px rgba(12, 37, 68, 0.08);
    margin: 2rem auto 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.product-intro__text {
    flex: 1 1 260px;
}

.product-intro__text h1 {
    margin: 0 0 0.5rem;
    font-size: 1.8rem;
    color: var(--brand-primary-dark);
}

.product-intro__text p {
    margin: 0;
    color: #2f374c;
}

.product-intro__stats {
    display: flex;
    flex: 1 1 200px;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.product-intro__media {
    flex: 0 0 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-intro__media img {
    max-width: 220px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(7, 21, 41, 0.2);
}

.product-intro__stat {
    background: rgba(12, 37, 68, 0.06);
    border-radius: 12px;
    padding: 0.9rem 1.2rem;
    text-align: center;
    min-width: 120px;
}

.product-intro__stat label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #5d6882;
}

.product-intro__stat strong {
    display: block;
    font-size: 1.3rem;
    color: var(--brand-primary);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.info-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 20px 45px rgba(7, 21, 41, 0.08);
    border: 1px solid rgba(15, 30, 60, 0.08);
}

.info-card h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--brand-primary-dark);
}

.info-card p,
.info-card ul {
    margin: 0 0 0.75rem;
    color: #202b3f;
    line-height: 1.6;
}

.info-card ul {
    padding-left: 1.2rem;
}

.partner-card__header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
}

.partner-flag {
    width: 28px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(7, 21, 41, 0.2);
}

.partner-logo {
    max-width: 180px;
    height: auto;
    display: block;
    margin-bottom: 0.9rem;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(7, 21, 41, 0.15);
}

section.container_12 {
    background: transparent;
}

.detail-container {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(13, 37, 68, 0.07);
    padding: 2rem 2.5rem;
    margin-bottom: 3rem;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.detail-layout.single-column {
    grid-template-columns: minmax(0, 1fr);
}

.detail-content p {
    line-height: 1.7;
    color: #212a40;
}

.detail-subtitle {
    font-size: 1.2rem;
    color: var(--brand-primary-dark);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.detail-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.72rem;
    background: var(--brand-primary);
    color: #fff;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    text-decoration: none;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.detail-link img {
    height: 14px;
    width: 14px;
}

.detail-media {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-media img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(7, 21, 41, 0.15);
}

.detail-inline {
    display: block;
    width: 100%;
    max-width: 560px;
    margin: 1.75rem auto;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(7, 21, 41, 0.15);
}

.spec-table-wrapper {
    margin-top: 2rem;
    overflow-x: auto;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.spec-table th,
.spec-table td {
    border: 1px solid rgba(15, 30, 60, 0.15);
    padding: 0.65rem 0.85rem;
    vertical-align: top;
}

.spec-table th {
    background: #0d2544;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
}

.spec-table td {
    background: #fff;
    color: #202b3f;
}

.spec-table tr.section-row td {
    background: #f1f4fb;
    font-weight: 600;
    color: #0d2544;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.spec-table .section-note {
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    color: #c41e3a;
    margin-left: 0.5rem;
    font-size: 0.8rem;
}

@media (max-width: 900px) {
    .detail-layout {
        grid-template-columns: 1fr;
    }
}

.product-tile {
    background: #fff;
    border-radius: 20px;
    padding: 1.75rem;
    border: 1px solid rgba(13, 37, 68, 0.1);
    box-shadow: 0 20px 50px rgba(12, 37, 68, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-tile__media {
    height: 180px;
    border-radius: 16px;
    background: linear-gradient(120deg, rgba(13, 37, 68, 0.08), rgba(196, 30, 58, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary-dark);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px;
    overflow: hidden;
}

.product-tile__media img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.product-tile h3 {
    margin: 0;
    color: var(--brand-primary-dark);
}

.product-tile p {
    margin: 0;
    color: #27334a;
    flex: 1;
}

.product-tile a {
    align-self: flex-start;
    margin-top: 0.5rem;
    font-weight: 600;
    color: var(--brand-accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
}

.product-tile a:hover {
    color: var(--brand-primary);
}

.header .container_12 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.25rem 1rem 1.75rem;
}

.header .grid_10 {
    flex: 1 1 auto;
}

.header .grid_2 {
    flex: 0 0 auto;
    width: auto !important;
}

.logo {
    align-self: center;
    position: static;
    width: auto;
    padding: 0;
}

.logo img {
    max-height: none;
    height: auto;
    width: auto;
    display: block;
}

.navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.navigation li {
    margin: 0;
}

.navigation a {
    display: inline-flex;
    align-items: center;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #e7ecfa;
    background: rgba(255, 255, 255, 0.05);
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.navigation a:hover,
.navigation a:focus {
    color: #fff;
    background: var(--brand-accent);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.navigation a.is-active {
    color: #fff;
    background: var(--brand-primary);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 14px 28px rgba(7, 21, 43, 0.25);
}

footer {
    margin-top: 3rem;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 70%);
    color: #fff;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-shadow: 0 -12px 30px rgba(4, 12, 24, 0.35);
}

.footer {
    max-width: 1140px;
    margin: 0 auto;
    padding: 1.25rem 1rem 1.75rem;
    min-height: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .grid_12 {
    font-size: 0.95rem;
    text-align: center;
    line-height: 1.6;
    color: inherit;
    margin: 0;
}

@media (max-width: 980px) {
    .header .container_12 {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .header .grid_10,
    .header .grid_2 {
        width: 100%;
    }

    .navigation ul {
        justify-content: center;
    }

    .logo {
        margin-top: 0.75rem;
    }
}

@media (max-width: 640px) {
    .header .container_12 {
        padding: 1.1rem 0.75rem;
    }

    .navigation a {
        font-size: 0.75rem;
        padding: 0.55rem 1rem;
    }
}
:root {
