:root {
    --color-primary: #0b5eb7;
    --color-primary-dark: #094a92;
    --color-accent: #2dd4bf;
    --color-bg: #f6f7fb;
    --color-surface: #ffffff;
    --color-text: #0f172a;
    --color-muted: #4c566a;
    --color-line: rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 30px 60px rgba(15, 23, 42, 0.12);
    --shadow-md: 0 18px 36px rgba(15, 23, 42, 0.08);
    --shadow-sm: 0 10px 20px rgba(15, 23, 42, 0.06);
    --system-banner-gradient: linear-gradient(135deg, #0b5eb7 0%, #24c6dc 100%);
    --banner-padding-top: 170px;
    --banner-padding-bottom: 130px;
    --banner-min-height: calc(var(--banner-padding-top) + var(--banner-padding-bottom) + 220px);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --transition-base: all 0.3s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
}

img {
    max-width: 100%;
    display: block;
}

figure {
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.container {
    width: min(1120px, 92vw);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    overflow: visible;
    background: rgba(246, 247, 251, 0.85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.page-home .site-header {
    background: transparent;
    border-bottom: none;
    box-shadow: none;
    color: var(--color-text);
}

.page-home .site-header .logo {
    color: var(--color-primary);
}

.page-home .site-header .site-nav a {
    color: var(--color-muted);
}

.page-home .site-header .site-nav a.is-active,
.page-home .site-header .site-nav a:hover,
.page-home .site-header .site-nav a:focus {
    color: var(--color-primary);
}

.page-home .site-header .site-nav.is-open a {
    color: var(--color-text);
}

.page-home .site-header .site-nav.is-open a.is-active,
.page-home .site-header .site-nav.is-open a:hover,
.page-home .site-header .site-nav.is-open a:focus {
    color: var(--color-primary);
}

.page-home .site-header .nav-toggle__bar,
.page-home .site-header .nav-toggle__bar::before,
.page-home .site-header .nav-toggle__bar::after {
    background: #ffffff;
}

.page-home .site-header .nav-toggle[aria-expanded="true"] .nav-toggle__bar,
.page-home .site-header .nav-toggle[aria-expanded="true"] .nav-toggle__bar::before,
.page-home .site-header .nav-toggle[aria-expanded="true"] .nav-toggle__bar::after {
    background: var(--color-text);
}

.site-header.is-scrolled {
    background: rgba(246, 247, 251, 0.96);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.page-home .site-header.is-scrolled {
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.page-home .site-header.is-scrolled .logo {
    color: var(--color-primary);
}

.page-home .site-header.is-scrolled .site-nav a {
    color: var(--color-muted);
}

.page-home .site-header.is-scrolled .site-nav a.is-active,
.page-home .site-header.is-scrolled .site-nav a:hover,
.page-home .site-header.is-scrolled .site-nav a:focus {
    color: var(--color-primary);
}

.page-home .site-header.is-scrolled .nav-toggle__bar,
.page-home .site-header.is-scrolled .nav-toggle__bar::before,
.page-home .site-header.is-scrolled .nav-toggle__bar::after {
    background: var(--color-text);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo {
    font-family: "Jost", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 0.02em;
}

.site-nav ul {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav a,
.nav-label {
    font-weight: 500;
    color: var(--color-muted);
    transition: var(--transition-base);
    position: relative;
    padding-bottom: 4px;
}

.site-nav a::after,
.nav-label::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
    border-radius: 2px;
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav a.is-active,
.nav-label:hover,
.nav-label:focus,
.nav-label.is-active {
    color: var(--color-primary);
}

.site-nav a.is-active::after,
.site-nav a:hover::after,
.site-nav a:focus::after,
.nav-label.is-active::after,
.nav-label:hover::after,
.nav-label:focus::after {
    transform: scaleX(1);
}

.nav-label {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
}

.site-nav .has-submenu {
    position: relative;
}

.site-nav .has-submenu::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 10px;
}

.products-submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    flex-direction: column;
    min-width: 220px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: var(--color-surface);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    padding: 6px 0;
    gap: 2px;
    z-index: 20;
}

.products-submenu a {
    font-size: 0.95rem;
    color: var(--color-text);
    padding: 10px 18px;
    border-radius: 8px;
    transition: var(--transition-base);
    letter-spacing: 0.01em;
}

.products-submenu a:hover,
.products-submenu a:focus {
    background: rgba(15, 23, 42, 0.05);
    color: var(--color-primary);
}

.site-nav .has-submenu:hover .products-submenu,
.site-nav .has-submenu:focus-within .products-submenu,
.site-nav.is-open .products-submenu {
    display: flex;
}

.site-nav.is-open .products-submenu {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 8px 0 0;
    gap: 8px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
}

.nav-toggle__bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    position: relative;
}

.nav-toggle__bar::before,
.nav-toggle__bar::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition-base);
}

.nav-toggle__bar::before {
    top: -7px;
}

.nav-toggle__bar::after {
    top: 7px;
}

.hero {
    position: relative;
    color: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero--static {
    min-height: 100vh;
    padding: 0;
    background: #0f172a;
}

.hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(110%);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.78) 10%, rgba(15, 23, 42, 0.5));
    opacity: 0;
    animation: heroOverlayFade 1.2s ease-out 0.25s forwards;
}

.hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(30px, 4vw, 60px);
    align-items: center;
    padding: clamp(90px, 11vh, 150px) 0 clamp(80px, 10vh, 130px);
}

.hero__content h1 {
    margin: 24px 0 20px;
    font-size: clamp(3rem, 6vw, 4.4rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.hero__content {
    text-align: center;
    min-width: 0;
}

.page-home .hero--static {
    min-height: 93vh;
}

.page-home .hero__inner {
    align-items: flex-start;
    padding: clamp(70px, 8vh, 110px) 0 clamp(60px, 7vh, 90px);
}

.hero__content h1 .hero__title-line,
.hero__content h1 .hero__title-line--nowrap {
    display: block;
    white-space: nowrap;
    word-break: keep-all;
}

.hero__title-line--compact {
    font-size: clamp(1.85rem, 3.1vw, 2.6rem);
    letter-spacing: -0.01em;
}

.hero__content p {
    max-width: 520px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.82);
}

.hero__eyebrow {
    font-size: 0.95rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.hero__actions {
    display: flex;
    gap: 16px;
    margin-top: 26px;
    margin-bottom: 34px;
    justify-content: center;
}

.hero__description {
    max-width: min(1020px, 96vw);
    margin: 0 auto;
    display: grid;
    gap: 12px;
    text-align: center;
    justify-items: center;
    padding: 0 12px;
}

.hero__description p {
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 740px;
    text-align: center;
}

@keyframes heroOverlayFade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.96rem;
    border: 2px solid transparent;
    transition: var(--transition-base);
    text-align: center;
}

.btn--primary {
    background: var(--color-accent);
    color: #064e3b;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn--ghost {
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
}

.btn--light {
    background: #ffffff;
    color: var(--color-primary);
    border-color: #ffffff;
}

.btn--outline {
    background: transparent;
    color: var(--color-text);
    border-color: rgba(15, 23, 42, 0.2);
}

.btn--outline:hover {
    background: rgba(15, 23, 42, 0.04);
}

    color: rgba(255, 255, 255, 0.7);
}


section {
    padding: 120px 0;
}

.section-header {
    max-width: 600px;
    text-align: center;
    margin: 0 auto 60px;
}

.section-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.9rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin: 0 0 18px;
}

.section-header p {
    margin: 0;
    color: var(--color-muted);
}

.solutions {
    background: linear-gradient(180deg, #ffffff 0%, #eef2ff 100%);
    padding: clamp(90px, 12vh, 160px) 0;
}

.solutions__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.card {
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    border: 1px solid rgba(11, 94, 183, 0.05);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.card__figure {
    position: relative;
    aspect-ratio: 16 / 10;
    background: #000000;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
}

.card__figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card__body {
    padding: 30px 32px 32px;
    display: grid;
    gap: 16px;
}

.card__icon {
    width: 70px;
    height: 70px;
    border-radius: 22px;
    background: linear-gradient(140deg, rgba(11, 94, 183, 0.1), rgba(45, 212, 191, 0.15));
    display: grid;
    place-items: center;
}

.card__icon svg {
    width: 42px;
    height: 42px;
    fill: none;
    stroke: var(--color-primary);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.card h3 {
    margin: 0;
    font-size: 1.4rem;
    color: var(--color-primary-dark);
}

.card p {
    margin: 0;
    color: var(--color-muted);
}

.card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
    color: var(--color-text);
}

.card li::before {
    content: "•";
    margin-right: 8px;
    color: var(--color-accent);
}

.technology {
    background: #0f172a;
    color: #ffffff;
    position: relative;
}

.technology__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 70px;
    align-items: center;
}

.technology__content p {
    color: rgba(255, 255, 255, 0.78);
    max-width: 520px;
}

.technology__features {
    margin-top: 40px;
    display: grid;
    gap: 28px;
}

.technology__features h3 {
    margin: 0 0 6px;
    font-size: 1.2rem;
}

.technology__features p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
}

.technology__visual {
    position: relative;
    display: grid;
    place-items: center;
    gap: 24px;
}

.technology__figure {
    width: min(100%, 420px);
    aspect-ratio: 4 / 3;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #000000;
    position: relative;
    z-index: 1;
}

.technology__figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tech-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.45), transparent 62%);
    filter: blur(0);
    z-index: 0;
}

.tech-card {
    position: relative;
    padding: 36px;
    border-radius: 26px;
    background: linear-gradient(160deg, rgba(12, 74, 110, 0.9), rgba(30, 64, 175, 0.9));
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.16);
    max-width: 320px;
    display: grid;
    gap: 16px;
    z-index: 2;
}

.tech-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.7);
}

.tech-card strong {
    font-size: 1.4rem;
}

.tech-card ul {
    margin: 0;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.tech-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.45);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.status-light {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.3);
}

.cases__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.case-card {
    border-radius: var(--radius-md);
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.05);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: var(--transition-base);
}

.case-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.case-card__figure {
    aspect-ratio: 16 / 10;
    background: #000000;
    overflow: hidden;
}

.case-card__figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-card__body {
    padding: 28px 30px 32px;
    display: grid;
    gap: 12px;
}

.case-card h3 {
    margin: 0;
    font-size: 1.3rem;
    color: var(--color-primary-dark);
}

.case-card p {
    margin: 0;
    color: var(--color-muted);
}

.case-tag {
    justify-self: flex-start;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(11, 94, 183, 0.12);
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 600;
}

.support {
    background: linear-gradient(180deg, #0f172a 0%, #0b213f 100%);
    color: #ffffff;
}

.support__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px;
    align-items: center;
}

.support__media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: #000000;
}

.support__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.support__content {
    display: grid;
    gap: 26px;
}

.support__list {
    display: grid;
    gap: 22px;
}

.support__item {
    padding: 24px 28px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(13, 45, 84, 0.55);
    backdrop-filter: blur(8px);
}

.support__item strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.partners {
    padding: 90px 0;
    background: #ffffff;
    border-top: 1px solid var(--color-line);
}

.partners__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px;
    align-items: center;
}

.partners__media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #000000;
    box-shadow: var(--shadow-sm);
}

.partners__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partners__content {
    display: grid;
    gap: 26px;
}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 18px;
}

.partner-logos a {
    display: block;
}

.partner-logos img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(15, 23, 42, 0.18);
    background: #000000;
}

.partner-logos__empty {
    grid-column: 1 / -1;
    margin: 0;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border: 1px dashed rgba(15, 23, 42, 0.2);
    background: #ffffff;
    color: var(--color-muted);
    font-size: 0.95rem;
    text-align: center;
}

.cta {
    background: linear-gradient(120deg, #0b5eb7 0%, #4f46e5 100%);
    color: #ffffff;
    padding: 80px 0;
}

.cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.cta__inner h2 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 3.4vw, 2.6rem);
}

.cta--light {
    background: linear-gradient(120deg, #0ea5e9 0%, #6366f1 100%);
}

.cta--light .btn--light {
    color: #0b5eb7;
}

.sub-hero {
    padding: 140px 0 110px;
    background: linear-gradient(135deg, #0b5eb7 0%, #1f2937 100%);
    color: #ffffff;
}

.sub-hero__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px;
    align-items: center;
}

.sub-hero__media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #000000;
    min-height: 360px;
}

.sub-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub-hero__content {
    display: grid;
    gap: 24px;
    min-width: 0;
}

.sub-hero__content h1 {
    margin: 0;
    font-size: clamp(2.4rem, 4.6vw, 3.2rem);
    line-height: 1.16;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.sub-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.sub-hero--consultation {
    position: relative;
    overflow: hidden;
    padding: var(--banner-padding-top) 0 var(--banner-padding-bottom);
    min-height: var(--banner-min-height);
}

.sub-hero--consultation .sub-hero__inner {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
}

.sub-hero--consultation .sub-hero__content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    text-align: center;
    margin: 0 auto;
}

.sub-hero--consultation .sub-hero__actions {
    justify-content: center;
}

.sub-hero--consultation .sub-hero__media {
    position: absolute;
    inset: 0;
    width: 100%;
    min-height: 100%;
    border-radius: 0;
    -webkit-clip-path: none;
    clip-path: none;
    overflow: hidden;
    background: #000000;
    box-shadow: none;
}

.sub-hero--consultation .sub-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    z-index: 1;
}

.sub-hero--consultation .sub-hero__media::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12%;
    bottom: 12%;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
    z-index: 1;
}

.sub-hero--consultation .sub-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 0;
}

.sub-hero--achievements {
    position: relative;
    overflow: hidden;
    padding: var(--banner-padding-top) 0 var(--banner-padding-bottom);
    min-height: var(--banner-min-height);
}

.sub-hero--achievements .sub-hero__inner {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
}

.sub-hero--achievements .sub-hero__content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    text-align: center;
    margin: 0 auto;
}

.sub-hero--achievements .sub-hero__media {
    position: absolute;
    inset: 0;
    width: 100%;
    min-height: 100%;
    border-radius: 0;
    -webkit-clip-path: none;
    clip-path: none;
    overflow: hidden;
    background: #000000;
    box-shadow: none;
}

.sub-hero--achievements .sub-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    z-index: 1;
}

.sub-hero--achievements .sub-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 0;
}


.product-gallery {
    background: #ffffff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
}

.product-model-hero {
    position: relative;
    overflow: hidden;
    background: #0f172a url("assets/images/products/banner.jpg") center / cover no-repeat;
    color: #ffffff;
    padding: var(--banner-padding-top) clamp(20px, 6vw, 60px) var(--banner-padding-bottom);
    min-height: var(--banner-min-height);
}

.product-model-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    z-index: 1;
}

.product-model-hero .container {
    position: relative;
    z-index: 2;
}

.product-model-hero__content {
    max-width: 720px;
    display: grid;
    gap: 16px;
    min-width: 0;
}

.product-category-pills {
    display: inline-flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 6px 0 4px;
}

.product-category-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-base);
}

.product-category-pill:hover,
.product-category-pill:focus,
.product-category-pill.is-active {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.18);
}

.product-model-hero__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 4px;
}

.product-model-list__title {
    margin: 12px 0 6px;
}

.product-model-list__subtitle {
    margin: 0;
    color: var(--color-muted);
}

.system-intro {
    background: #f9fbff;
    padding: clamp(40px, 6vw, 70px) clamp(20px, 6vw, 60px);
    border-radius: 32px;
    margin: clamp(30px, 4vw, 50px) 0;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
}

.system-intro__header {
    max-width: 780px;
    margin-bottom: 24px;
}

.system-intro__header h2 {
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    margin-bottom: 12px;
    color: #0f172a;
}

.system-intro__header p {
    color: rgba(15, 23, 42, 0.8);
}

.system-intro__tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.system-tab {
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: transparent;
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 600;
    color: rgba(15, 23, 42, 0.65);
    cursor: pointer;
    transition: var(--transition-base);
}

.system-tab.is-active {
    background: #0b5eb7;
    color: #ffffff;
    border-color: transparent;
}

.system-tab:hover {
    border-color: #0b5eb7;
    color: #0b5eb7;
}

.system-intro__panels {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.system-tab__panel {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: rgba(15, 23, 42, 0.85);
    display: none;
}

.system-tab__panel.is-active {
    display: block;
}

.system-tab__panel h3 {
    margin-top: 0;
    color: #0f172a;
}

.system-tab__panel ul {
    margin: 12px 0 0;
    padding-left: 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.system-quicklinks {
    padding: clamp(40px, 5vw, 60px) clamp(20px, 6vw, 60px) clamp(60px, 6vw, 80px);
}

.system-quicklinks__header {
    margin-bottom: 24px;
}

.system-quicklinks__header h2 {
    font-size: clamp(1.75rem, 3vw, 2.2rem);
    color: #0f172a;
    margin-bottom: 8px;
}

.system-quicklinks__header p {
    color: rgba(15, 23, 42, 0.75);
}

.system-quicklinks__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.system-quicklink {
    position: relative;
    border-radius: 24px;
    padding: clamp(20px, 4vw, 32px);
    text-decoration: none;
    color: rgba(15, 23, 42, 0.9);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 210px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.system-quicklink::after {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px dashed rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    pointer-events: none;
    transition: var(--transition-base);
}

.system-quicklink h3 {
    margin: 0;
    font-size: 1.3rem;
    color: #0f172a;
    z-index: 1;
}

.system-quicklink p {
    margin: 0;
    color: rgba(15, 23, 42, 0.75);
    z-index: 1;
}

.system-quicklink__cta {
    margin-top: auto;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-primary-dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    z-index: 1;
}

.system-quicklink__cta::after {
    content: "→";
    font-weight: 700;
    transition: transform 0.3s ease;
}

.system-quicklink:hover {
    transform: translateY(-2px);
    border-color: rgba(11, 94, 183, 0.4);
    box-shadow: 0 26px 50px rgba(15, 23, 42, 0.15);
}

.system-quicklink:hover::after {
    border-color: rgba(11, 94, 183, 0.3);
}

.system-quicklink:hover .system-quicklink__cta::after {
    transform: translateX(4px);
}

.system-detail-hero {
    padding: var(--banner-padding-top) clamp(20px, 6vw, 60px) var(--banner-padding-bottom);
    background: var(--system-banner-gradient);
    border-radius: 0;
    margin: 0;
    box-shadow: none;
    min-height: var(--banner-min-height);
}

.page-system .system-detail-hero,
.page-system-detail .system-detail-hero {
    position: relative;
    overflow: hidden;
    background: #0f172a url("assets/images/system/banner.jpg") center / cover no-repeat;
}

.page-system .system-detail-hero::after,
.page-system-detail .system-detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    z-index: 1;
}

.page-system .system-detail-hero > img,
.page-system .system-detail-hero .system-detail-hero__media img,
.page-system-detail .system-detail-hero > img,
.page-system-detail .system-detail-hero .system-detail-hero__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.page-system .system-detail-hero .container,
.page-system-detail .system-detail-hero .container {
    position: relative;
    z-index: 2;
}

.system-detail-hero h1 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin-bottom: 12px;
    color: #f9fcff;
}

.system-detail-hero p {
    color: rgba(249, 252, 255, 0.9);
    max-width: 680px;
    font-size: 1.15rem;
    font-weight: 600;
}

.system-detail-hero .section-eyebrow {
    color: rgba(249, 252, 255, 0.85);
}

.system-detail {
    padding-top: clamp(24px, 4vw, 40px);
    padding-bottom: clamp(40px, 5vw, 60px);
}

.page-system-detail.page-system-control .system-detail .container {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 3vw, 24px);
    align-items: stretch;
}

.system-detail-tabs {
    overflow-x: auto;
    padding-bottom: 12px;
    margin-bottom: clamp(20px, 3vw, 28px);
    -webkit-overflow-scrolling: touch;
}

.page-system-detail.page-system-control .system-detail-tabs {
    overflow-x: auto;
    padding: 0 0 8px;
    margin: 0;
    align-self: stretch;
    width: 100%;
    max-width: none;
}

.system-detail__focus {
    margin-top: 0;
    background: #ffffff;
    border-radius: 14px;
    padding: clamp(28px, 3vw, 36px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 25px 40px rgba(15, 23, 42, 0.12);
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 3vw, 28px);
}

.page-system-detail.page-system-control .system-detail__focus-inner {
    order: 1;
    text-align: center;
}

.page-system-detail.page-system-control .system-detail__focus-media {
    order: 2;
}

.page-system-detail.page-system-guidance .system-detail__focus-inner,
.page-system-detail.page-system-street .system-detail__focus-inner {
    order: -1;
    text-align: center;
}

.page-system-detail.page-system-control .system-detail__focus-inner {
    padding-top: 10px;
}


.system-detail__focus-inner {
    text-align: left;
}
.system-detail__focus-inner h3 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    color: var(--color-primary-dark);
}

.page-system-detail.page-system-guidance .system-detail__focus-inner h3,
.page-system-detail.page-system-street .system-detail__focus-inner h3 {
    font-size: clamp(2.2rem, 4.2vw, 2.8rem);
}

.system-detail__focus-summary {
    margin-top: 16px;
    width: 100%;
}

.system-detail__focus-list {
    margin: 0;
    padding-left: 1.2rem;
    display: grid;
    gap: 8px;
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: left;
    list-style-position: outside;
}

.page-system-detail.page-system-control .system-detail__focus-list,
.page-system-detail.page-system-guidance .system-detail__focus-list,
.page-system-detail.page-system-street .system-detail__focus-list {
    font-size: 1.05rem;
    font-weight: 600;
}

.system-detail__focus-media {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 2vw, 24px);
    padding: 0;
    width: 100%;
    align-items: stretch;
}

.system-detail__focus-media figure {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.system-detail__focus-visual {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(11, 94, 183, 0.08), rgba(0, 0, 0, 0.04));
}

.system-detail__focus-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.page-system-detail.page-system-control .system-detail__focus-visual {
    aspect-ratio: auto;
    background: transparent;
}

.page-system-detail.page-system-control .system-detail__focus-media img {
    height: auto;
    object-fit: contain;
    background: transparent;
}

.page-system-detail.page-system-street .system-detail__focus-visual {
    aspect-ratio: auto;
}

.page-system-detail.page-system-street .system-detail__focus-media img {
    height: auto;
    object-fit: contain;
    background: transparent;
}

.page-system-detail.page-system-guidance .system-detail__focus-visual,
.page-system-detail.page-system-street .system-detail__focus-visual {
    background: transparent;
}

.system-detail__focus-media figcaption {
    font-size: clamp(1.5rem, 2.2vw, 1.95rem);
    font-weight: 700;
    color: #0f172a;
    background: rgba(255, 255, 255, 0.95);
    padding: 7px 16px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
    align-self: center;
    max-width: min(360px, 90%);
}

.system-detail-grid {
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 1.5vw, 14px);
    width: 100%;
}

.page-system-detail.page-system-control .system-detail-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: clamp(10px, 1.5vw, 14px);
    width: 100%;
    justify-content: center;
}

.system-detail-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 14px 14px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: var(--transition-base);
    cursor: pointer;
    flex: 0 0 auto;
    min-width: 0;
    width: 100%;
}

.page-system-detail.page-system-control .system-detail-card {
    flex: 0 0 auto;
    width: auto;
    min-width: 180px;
}

.system-detail-card h3 {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.2;
    color: #0f172a;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    text-align: left;
}

.page-system-detail.page-system-control .system-detail-card h3 {
    text-align: center;
}

.page-system-detail.page-system-guidance .system-detail-card h3,
.page-system-detail.page-system-street .system-detail-card h3 {
    text-align: center;
}

.system-detail-card p {
    display: none;
}


.system-detail-card--active {
    border-color: var(--color-primary);
    box-shadow: none;
}

.page-system-detail.page-system-control .system-detail-card {
    height: auto;
}

@media (max-width: 920px) {
    .page-system-detail.page-system-control .system-detail .container {
        gap: 16px;
    }

    .page-system-detail.page-system-control .system-detail-tabs {
        padding-left: 16px;
        padding-right: 16px;
        scroll-padding-inline: 16px;
    }

    .system-detail__focus {
        margin-top: 12px;
    }
}

.model-shop {
    background: #f4f6ff;
    padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 100px);
}

.model-shop .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.model-shop__layout {
    display: flex;
    flex-direction: column;
    gap: clamp(32px, 3vw, 40px);
    max-width: 100%;
    margin: 0 auto;
}

.model-shop__list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(16px, 2vw, 24px);
    width: 100%;
}

.model-grid__empty {
    margin: 24px 0;
    padding: 24px;
    border-radius: 18px;
    border: 1px dashed rgba(15, 23, 42, 0.15);
    color: rgba(15, 23, 42, 0.65);
    text-align: center;
    background: #ffffff;
}

.model-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: var(--transition-base);
    cursor: pointer;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.model-card--active {
    border-color: var(--color-primary);
    box-shadow: 0 22px 46px rgba(15, 23, 42, 0.14);
}

.model-card__image {
    position: relative;
    width: 100%;
    padding: 0;
    overflow: hidden;
    height: 220px;
    background: #e8eefb;
}

.model-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.model-card__body {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.model-card__title {
    font-size: 1.2rem;
    font-weight: 600;
}

.model-card__tagline {
    color: var(--color-muted);
    font-size: 0.95rem;
}

.model-card__summary {
    color: rgba(15, 23, 42, 0.8);
    font-size: 0.94rem;
    line-height: 1.5;
}

.model-card__price {
    font-size: 1rem;
    font-weight: 600;
}

.model-shop__detail {
    flex: 1;
    position: relative;
    top: auto;
    align-self: stretch;
}

.model-detail {
    background: #ffffff;
    padding: clamp(40px, 5vw, 60px);
    border-radius: 30px;
    min-height: 0;
    height: auto;
}

.model-detail__layout {
    background: transparent;
    border-radius: 0;
    padding: 0;
    border: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(16px, 3vw, 24px);
    min-height: 0;
    align-items: center;
}

.model-detail__media {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: transparent;
    border: none;
    box-shadow: none;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    top: auto;
    align-self: center;
    justify-self: center;
}

.model-detail__media img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

body.page-products[data-product-category="parking-guidance"] .model-detail__media {
    aspect-ratio: 4 / 3;
    min-height: 320px;
}

.model-detail__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.model-detail__tagline {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.75rem;
    color: var(--color-muted);
}

.model-detail__title {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin: 0;
}

.model-detail__summary {
    color: rgba(15, 23, 42, 0.85);
    line-height: 1.6;
    margin-top: 4px;
}

.model-detail__price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 6px;
}

.model-detail__features,
.model-detail__specs {
    background: #ffffff;
    padding: clamp(12px, 2vw, 16px);
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.model-detail__features h4,
.model-detail__specs h4 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.model-detail__feature-list,
.model-detail__spec-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.model-detail__feature-list li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.model-detail__feature-list li:last-child {
    border-bottom: none;
}

.model-detail__spec-list dt {
    font-weight: 600;
}

.model-detail__spec-list dd {
    margin: 0 0 10px 0;
}

.model-detail__actions {
    margin-top: 8px;
}

@media (min-width: 1021px) {
    .model-detail__media.is-sticky {
        position: sticky;
        top: clamp(64px, 12vh, 120px);
        align-self: flex-start;
    }
}

body.page-products {
    --product-accent: #0b5eb7;
    --product-accent-strong: #1c90ff;
}

body.page-products[data-product-category="parking-control"] {
    --product-accent: #0b5eb7;
    --product-accent-strong: #1c90ff;
}

body.page-products[data-product-category="parking-guidance"] {
    --product-accent: #0d9488;
    --product-accent-strong: #14b8a6;
}

body.page-products[data-product-category="street-parking"] {
    --product-accent: #f97316;
    --product-accent-strong: #fb923c;
}

body.page-products[data-product-category="parking-control"] .model-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(12px, 1.5vw, 18px);
    align-items: stretch;
    max-width: min(1360px, 100%);
    margin: 0 auto;
    padding: 0 clamp(12px, 3vw, 28px);
}

body.page-products[data-product-category="parking-guidance"] .model-grid {
    max-width: min(1360px, 100%);
    margin: 0 auto;
    padding: 0 clamp(12px, 3vw, 28px);
}

body.page-products[data-product-category="street-parking"] .model-grid {
    max-width: min(640px, 100%);
    margin: 0 auto;
    padding: 0 clamp(14px, 3.5vw, 32px);
}

body.page-products[data-product-category="street-parking"] .model-card {
    min-height: auto;
}

body.page-products[data-product-category="parking-control"] .model-card {
    border-color: rgba(11, 94, 183, 0.15);
    aspect-ratio: auto;
    min-height: 100%;
    display: flex;
    padding: 0;
    text-align: left;
}

body.page-products[data-product-category="parking-guidance"] .model-card {
    background: linear-gradient(180deg, rgba(20, 184, 166, 0.08) 0%, #ffffff 60%);
    border-color: rgba(20, 184, 166, 0.18);
}

body.page-products[data-product-category="parking-guidance"] .model-card__image {
    background: #ffffff;
    padding: 12px;
}

body.page-products[data-product-category="parking-guidance"] .model-card__image img {
    object-fit: contain;
}

body.page-products[data-product-category="street-parking"] .model-card {
    background: linear-gradient(180deg, rgba(249, 115, 22, 0.08) 0%, #ffffff 60%);
    border-color: rgba(249, 115, 22, 0.16);
}

body.page-products[data-product-category="street-parking"] .model-card__image {
    height: 420px;
}

body.page-products[data-product-category="street-parking"] .model-card__image img {
    object-fit: contain;
    background: #ffffff;
}

body.page-products[data-product-category="street-parking"] .model-detail__media {
    aspect-ratio: 4 / 5;
    width: min(60%, 540px);
    min-height: 180px;
}

body.page-products[data-product-category="street-parking"] .model-card__body {
    padding-bottom: 12px;
}

body.page-products[data-product-category="street-parking"] .model-card__title {
    font-size: 1.05rem;
}

body.page-products[data-product-category="street-parking"] .model-card__summary {
    font-size: 0.88rem;
}

body.page-products[data-product-category="parking-control"] .model-card__image {
    height: 260px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 10px 10px;
}

body.page-products[data-product-category="parking-control"] .model-card__image img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

body.page-products[data-product-category="parking-control"] .model-card__body {
    align-items: center;
    justify-content: flex-start;
    gap: 2px;
    padding: 12px 18px 14px;
}

body.page-products[data-product-category="parking-control"] .model-card__title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
    width: 100%;
}

body.page-products[data-product-category="parking-control"] .model-card__summary {
    display: none;
}

body.page-products .product-model-hero {
    background: #0f172a url("assets/images/products/banner.jpg") center / cover no-repeat;
}

body.page-products[data-product-category="parking-control"] .product-model-hero__title {
    white-space: nowrap;
}

.product-model-hero__title {
    word-break: keep-all;
    overflow-wrap: break-word;
}

@media (max-width: 1280px) {
    body.page-products[data-product-category="parking-control"] .model-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1020px) {
    .model-detail__layout {
        grid-template-columns: 1fr;
    }
    .model-detail__media {
        position: static;
        top: auto;
        align-self: center;
    }
    body.page-products[data-product-category="parking-control"] .model-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: clamp(12px, 2vw, 16px);
    }
}

@media (max-width: 720px) {
    .product-model-hero {
        padding: var(--banner-padding-top) clamp(16px, 6vw, 30px) var(--banner-padding-bottom);
    }

    .model-shop__list-wrapper {
        max-height: none;
        overflow: visible;
    }
}

@media (max-width: 1020px) {
    .model-detail__layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .product-model-hero {
        padding: var(--banner-padding-top) clamp(16px, 6vw, 30px) var(--banner-padding-bottom);
    }

    .model-detail__layout {
        grid-template-columns: 1fr;
    }
    body.page-products[data-product-category="parking-control"] .model-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

.gallery-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #060606;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}

.gallery-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.gallery-card figcaption {
    padding: 22px 24px 26px;
    display: grid;
    gap: 6px;
    background: #ffffff;
}

.gallery-card strong {
    font-size: 1.15rem;
    color: var(--color-primary-dark);
}

.gallery-card span {
    font-size: 0.96rem;
    color: var(--color-muted);
}

.product-systems {
    background: #f6f9ff;
}

.product-systems__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.product-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(11, 94, 183, 0.08);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.product-card__media {
    background: #000000;
    overflow: hidden;
}

.product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card__content {
    padding: 28px 32px;
    display: grid;
    gap: 14px;
}

.product-card__content h3 {
    margin: 0;
    font-size: 1.4rem;
    color: var(--color-primary-dark);
}

.product-card__content p {
    margin: 0;
    color: var(--color-muted);
}

.product-card__content ul {
    margin: 0;
    padding-left: 20px;
    color: var(--color-text);
}

.product-integration__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px;
    align-items: center;
}

.product-integration__media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #000000;
}

.product-integration__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-integration__content {
    display: grid;
    gap: 24px;
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.feature-item {
    padding: 20px 22px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(11, 94, 183, 0.12);
    background: rgba(15, 23, 42, 0.02);
    display: grid;
    gap: 6px;
}

.feature-item strong {
    font-size: 1.05rem;
}

.feature-item span {
    color: var(--color-muted);
}

.achievement-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 10px;
}

.achievement-stats div {
    padding: 18px 20px;
    border-radius: var(--radius-md);
    background: rgba(15, 23, 42, 0.4);
    text-align: center;
}

.achievement-stats strong {
    display: block;
    font-size: 1.8rem;
    margin-bottom: 4px;
}

.achievement-stats span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.achievement-milestones {
    background: linear-gradient(180deg, #ffffff 0%, #eef2ff 100%);
}

.achievement-milestones__inner {
    display: grid;
    gap: 32px;
}

.milestone-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 30px;
    padding: 30px;
    border-radius: var(--radius-lg);
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow-sm);
    align-items: center;
}

.milestone-card__media {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #000000;
    box-shadow: var(--shadow-sm);
}

.milestone-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.milestone-card__content {
    display: grid;
    gap: 12px;
}

.milestone-card__content h3 {
    margin: 0;
    font-size: 1.4rem;
    color: var(--color-primary-dark);
}

.milestone-card__content p {
    margin: 0;
    color: var(--color-muted);
}

.milestone-card__content ul {
    margin: 0;
    padding-left: 20px;
    color: var(--color-text);
}

.achievement-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.achievement-gallery {
    padding-top: 40px;
    padding-bottom: 40px;
}

.achievement-gallery__item {
    border: none;
    padding: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #000000;
    box-shadow: var(--shadow-sm);
    display: grid;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-base);
    font: inherit;
    color: inherit;
    appearance: none;
    -webkit-appearance: none;
}

.achievement-gallery__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.achievement-gallery__item:focus-visible {
    outline: 3px solid rgba(11, 94, 183, 0.4);
    outline-offset: 3px;
}

.achievement-gallery__media {
    display: block;
}

.achievement-gallery__media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.achievement-gallery__caption,
.achievement-gallery__item figcaption {
    padding: 16px 18px;
    background: #ffffff;
    font-size: 0.95rem;
    color: var(--color-muted);
}

.achievement-gallery__empty {
    grid-column: 1 / -1;
    margin: 0;
    padding: 20px 24px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px dashed rgba(15, 23, 42, 0.15);
    color: var(--color-muted);
    text-align: center;
}

.results-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 200;
}

.results-modal.is-open {
    display: flex;
}

.results-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
}

.results-modal__content {
    position: relative;
    z-index: 1;
    width: min(960px, 92vw);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-lg);
    padding: 24px;
    display: grid;
    gap: 16px;
}

.results-modal__close {
    justify-self: end;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.2);
    background: #ffffff;
    color: var(--color-text);
    font: inherit;
    padding: 6px 14px;
    cursor: pointer;
}

.results-modal__media {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #000000;
    min-height: 360px;
    display: grid;
    place-items: center;
}

.results-modal__image {
    width: 100%;
    height: 100%;
    max-height: 70vh;
    object-fit: contain;
}

.results-modal__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-text);
    font: inherit;
    padding: 10px 16px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.results-modal__nav--prev {
    left: 16px;
}

.results-modal__nav--next {
    right: 16px;
}

.results-modal__nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.results-modal__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.results-modal__title {
    margin: 0;
    font-size: 1.2rem;
    color: var(--color-primary-dark);
}

.results-modal__count {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.95rem;
}

body.is-modal-open {
    overflow: hidden;
}

.consultation-popup {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 220;
}

.consultation-popup.is-open {
    display: flex;
}

.consultation-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
}

.consultation-popup__content {
    position: relative;
    z-index: 1;
    width: min(520px, 92vw);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--shadow-lg);
    padding: 22px 24px;
    display: grid;
    gap: 12px;
}

.consultation-popup__title {
    margin: 0;
    font-size: 1.15rem;
    color: var(--color-primary-dark);
}

.consultation-popup__message {
    font-size: 0.96rem;
    color: var(--color-text);
    line-height: 1.6;
}

.consultation-popup__message ul {
    margin: 8px 0 0;
    padding-left: 18px;
}

.consultation-popup__close {
    justify-self: end;
}

body.is-popup-open {
    overflow: hidden;
}

.is-popup-open .consultation-form__intro .form-message {
    display: none;
}

.consultation-form {
    background: #f6f7fb;
    padding-top: 70px;
}

.consultation-form__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.consultation-form__intro {
    display: grid;
    gap: 20px;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.consultation-form__intro h2 {
    margin: 0;
}

.form-message {
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid transparent;
    font-size: 0.95rem;
    text-align: left;
}

.form-message ul {
    margin: 10px 0 0;
    padding-left: 18px;
}

.form-message--success {
    background: rgba(45, 212, 191, 0.15);
    border-color: rgba(15, 118, 110, 0.3);
    color: #0f766e;
}

.form-message--error {
    background: rgba(248, 113, 113, 0.12);
    border-color: rgba(185, 28, 28, 0.3);
    color: #b91c1c;
}

.consultation-form__form {
    background: #ffffff;
    border: 1px solid rgba(11, 94, 183, 0.1);
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}

.contact {
    background: #ffffff;
}

.contact__inner {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    align-items: start;
}

.contact__form {
    background: #f8f9ff;
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(11, 94, 183, 0.08);
    display: grid;
    gap: 20px;
}

.form-field {
    display: grid;
    gap: 8px;
}

.form-field label {
    font-weight: 600;
    color: var(--color-text);
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.15);
    background: #ffffff;
    font: inherit;
    transition: var(--transition-base);
}

.form-field__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: end;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(11, 94, 183, 0.15);
}

.form-field--full {
    grid-column: 1 / -1;
}

.site-footer {
    background: #0f172a;
    color: rgba(255, 255, 255, 0.7);
    padding: 48px 0;
    font-size: 0.92rem;
}

.site-footer__inner {
    display: grid;
    gap: 18px;
}

.site-footer strong {
    color: #ffffff;
    font-size: 1rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: #ffffff;
}

@media (max-width: 1024px) {
    .hero,
    section {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .mega-menu-panel {
        display: none;
    }

    .hero__inner {
        grid-template-columns: 1fr;
    }

    .hero__content h1 .hero__title-line,
    .hero__content h1 .hero__title-line--nowrap {
        white-space: normal;
    }

    body.page-products[data-product-category="parking-control"] .product-model-hero__title {
        white-space: normal;
    }

    .solutions__grid,
    .cases__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sub-hero__inner,
    .product-integration__inner,
    .consultation-form__inner,
    .product-systems__grid {
        grid-template-columns: 1fr;
    }

    .sub-hero--consultation .sub-hero__media {
        position: absolute;
        inset: 0;
        width: 100%;
        min-height: 100%;
        border-radius: 0;
    }

    .sub-hero--consultation .sub-hero__content {
        max-width: 100%;
    }

    .product-card {
        grid-template-columns: 1fr;
    }

    .product-card__media {
        height: 220px;
    }

    .milestone-card {
        grid-template-columns: 1fr;
    }

    .support__inner,
    .technology__inner,
    .partners__inner,
    .contact__inner {
        grid-template-columns: 1fr;
    }

    .contact__inner {
        gap: 40px;
    }

    .cta__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .site-header .container {
        padding: 16px 0;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        inset: 70px 16px auto 16px;
        padding: 20px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: var(--shadow-lg);
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        transition: var(--transition-base);
    }

    .site-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .site-nav.is-open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .page-home .site-header .nav-toggle__bar,
    .page-home .site-header .nav-toggle__bar::before,
    .page-home .site-header .nav-toggle__bar::after {
        background: var(--color-text);
    }

    .solutions__grid,
    .cases__grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .sub-hero__inner {
        gap: 40px;
    }

    .sub-hero__media {
        order: -1;
        min-height: 260px;
    }

    .sub-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .contact__form {
        padding: 28px;
    }

    .achievement-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .achievement-gallery__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .results-modal__content {
        padding: 18px;
    }

    .results-modal__media {
        min-height: 260px;
    }

    .results-modal__nav {
        padding: 8px 12px;
    }

    .milestone-card {
        padding: 26px;
        gap: 24px;
    }

    .consultation-form__inner {
        gap: 36px;
    }

    .feature-item {
        padding: 18px 20px;
    }
}

@media (max-width: 520px) {
    body {
        font-size: 16px;
    }

    .hero,
    section {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .hero__content h1 {
        font-size: 2.2rem;
    }

    .hero__content h1 .hero__title-line--main {
        width: 100%;
        text-align: center;
        white-space: normal;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }


    .cta__inner {
        gap: 18px;
    }

    .footer-links {
        flex-direction: column;
    }

    .gallery-grid,
    .achievement-gallery__grid {
        grid-template-columns: 1fr;
    }

    .achievement-stats {
        grid-template-columns: 1fr;
    }

    .product-card__content {
        padding: 24px;
    }

    .milestone-card {
        padding: 22px;
    }

    .sub-hero__content h1 {
        font-size: 2rem;
    }

    .consultation-form__inner {
        gap: 28px;
    }

    .consultation-form__form {
        padding: 24px;
    }
}
