:root {
    --web-blue: #1a6dff;
    --web-blue-light: #4d9bff;
    --web-blue-dark: #0052cc;
    --web-blue-glow: rgba(26, 109, 255, 0.35);
    --web-text: #0f172a;
    --web-text-muted: #64748b;
    --web-bg: #f8fafc;
    --web-bg-alt: #eef4ff;
    --web-white: #ffffff;
    --web-radius: 16px;
    --web-radius-lg: 24px;
    --web-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    --web-font: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    --web-container: 1200px;
}

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

html { scroll-behavior: smooth; }

body.web-body {
    margin: 0;
    font-family: var(--web-font);
    color: var(--web-text);
    background: var(--web-bg);
    line-height: 1.6;
}

body.web-body.splash-active { overflow: hidden; }

.web-container {
    max-width: var(--web-container);
    margin: 0 auto;
    padding: 0 24px;
}

.web-highlight { color: var(--web-blue); }

.web-splash {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.web-splash.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.web-splash-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #f0f7ff 0%, #dceeff 35%, #c5e0ff 60%, #e8f2ff 100%);
    overflow: hidden;
}

.web-splash-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.7;
}

.web-splash-blob--1 { width: 50vw; height: 50vw; top: -10%; left: -10%; background: #fff; }
.web-splash-blob--2 { width: 40vw; height: 40vw; bottom: 10%; right: -5%; background: #7eb8ff; opacity: 0.4; }
.web-splash-blob--3 { width: 30vw; height: 30vw; top: 40%; left: 30%; background: #b8d9ff; opacity: 0.5; }

.web-splash-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 32px;
    will-change: transform, opacity;
}

.web-splash-content.is-zooming {
    animation: webSplashZoom 0.28s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.web-splash-eyebrow {
    margin: 0 0 24px;
    font-size: 16px;
    font-weight: 400;
    color: var(--web-text);
    letter-spacing: 0.06em;
}

.web-splash-title {
    margin: 0;
    font-size: clamp(42px, 8vw, 80px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.web-splash-brand-animated {
    display: inline-block;
    background: linear-gradient(
        90deg,
        var(--web-text) 0%,
        var(--web-blue-dark) 18%,
        var(--web-blue) 38%,
        var(--web-blue-light) 50%,
        var(--web-blue) 62%,
        var(--web-blue-dark) 82%,
        var(--web-text) 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: webSplashGradientFlow 2.4s linear infinite;
}

@keyframes webSplashGradientFlow {
    0% { background-position: 100% 50%; }
    100% { background-position: -100% 50%; }
}

.web-splash-footer {
    position: absolute;
    bottom: 56px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    align-items: baseline;
    gap: 14px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.web-splash-tagline { font-size: 13px; letter-spacing: 0.08em; }

.web-splash-progress {
    font-size: 16px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

@keyframes webSplashZoom {
    0%   { transform: scale(1); opacity: 1; }
    60%  { transform: scale(1.4); opacity: 0.7; }
    100% { transform: scale(2.5); opacity: 0; }
}

.web-app {
    opacity: 1;
    visibility: visible;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.splash-active .web-app {
    opacity: 0;
    visibility: hidden;
}

body.splash-ready .web-app {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.35s ease;
}

.web-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: transparent;
    border-bottom: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}

.web-header.is-scrolled {
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
}

.web-header.lang-open,
.web-header:has(.web-lang-dropdown:hover),
.web-header:has(.web-lang-dropdown:focus-within),
.web-header.lang-open.is-scrolled {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.web-header.lang-open .web-nav,
.web-header:has(.web-lang-dropdown:hover) .web-nav,
.web-header:has(.web-lang-dropdown:focus-within) .web-nav {
    background: transparent !important;
    border-color: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.web-header.lang-open .web-nav-link.is-active,
.web-header:has(.web-lang-dropdown:hover) .web-nav-link.is-active,
.web-header:has(.web-lang-dropdown:focus-within) .web-nav-link.is-active {
    background: rgba(255, 255, 255, 0.55);
    box-shadow: none;
}

.page-home .web-main,
body.page-news .web-main,
body.page-cases .web-main,
body.page-about .web-main,
body.page-vision .web-main {
    padding-top: 0;
}

body.page-web:not(.page-home):not(.page-news):not(.page-cases):not(.page-about):not(.page-vision) .web-main {
    padding-top: 48px;
}

.web-header-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 16px 40px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.web-header-brand { flex-shrink: 0; min-width: 0; }

.web-header-brand-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.web-logo { text-decoration: none; color: inherit; display: block; }

.web-logo-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.web-logo-text em {
    font-style: normal;
    color: var(--web-blue);
}

.web-lang-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    font-size: 12px;
    color: var(--web-text-muted);
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 999px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.web-lang-dropdown {
    position: relative;
    flex-shrink: 0;
}

.web-lang-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 12px;
}

.web-lang-dropdown .lang-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--web-text-muted);
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.web-lang-dropdown .lang-dropdown-trigger:hover,
.web-lang-dropdown:hover .lang-dropdown-trigger,
.web-lang-dropdown.open .lang-dropdown-trigger {
    color: var(--web-text);
    background: rgba(255, 255, 255, 0.55);
}

.web-lang-dropdown .lang-dropdown-current {
    min-width: 0;
}

.web-lang-dropdown .lang-dropdown-caret {
    font-size: 11px;
    opacity: 0.65;
    transition: transform 0.2s;
}

.web-lang-dropdown:hover .lang-dropdown-caret,
.web-lang-dropdown:focus-within .lang-dropdown-caret,
.web-lang-dropdown.open .lang-dropdown-caret {
    transform: rotate(180deg);
}

.web-lang-dropdown .lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: auto;
    min-width: 160px;
    margin: 0;
    padding: 8px;
    list-style: none;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-height: min(70vh, 420px);
    overflow-y: auto;
}

.web-lang-dropdown .lang-dropdown-menu > li { min-width: 0; }

.web-lang-dropdown.open .lang-dropdown-menu,
.web-lang-dropdown:hover .lang-dropdown-menu,
.web-lang-dropdown:focus-within .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.web-lang-dropdown .lang-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    font-size: 13px;
    color: var(--web-text);
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s;
}

.web-lang-dropdown .lang-dropdown-menu a:hover,
.web-lang-dropdown .lang-dropdown-menu a.active {
    background: rgba(26, 109, 255, 0.08);
    color: var(--web-blue);
}

.web-header:not(.is-scrolled) .web-lang-dropdown .lang-dropdown-trigger {
    color: rgba(15, 23, 42, 0.55);
}

.web-header:not(.is-scrolled) .web-lang-dropdown .lang-dropdown-trigger:hover,
.web-header:not(.is-scrolled) .web-lang-dropdown:hover .lang-dropdown-trigger,
.web-header:not(.is-scrolled) .web-lang-dropdown.open .lang-dropdown-trigger {
    color: var(--web-text);
    background: rgba(255, 255, 255, 0.45);
}

.web-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    margin-top: 4px;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.web-header.is-scrolled .web-nav {
    background: rgba(248, 250, 252, 0.9);
    border-color: rgba(15, 23, 42, 0.08);
}

.web-nav-link {
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(15, 23, 42, 0.65);
    text-decoration: none;
    border-radius: 999px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.web-nav-link:hover { color: var(--web-text); }

.web-nav-link.is-active {
    color: var(--web-text);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
}

.web-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-top: 4px;
}

.web-product-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px 8px 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--web-text);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    white-space: nowrap;
}

.web-product-pill:hover {
    transform: translateY(-1px);
    background: #fff;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.1);
    color: var(--web-text);
}

.web-product-pill-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    padding: 2px;
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.06);
}

.web-header:not(.is-scrolled) .web-product-pill {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(255, 255, 255, 0.85);
}

.web-header.is-scrolled .web-product-pill {
    background: rgba(248, 250, 252, 0.95);
    border-color: rgba(15, 23, 42, 0.08);
}

.web-nav-product {
    display: none;
}

.web-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    font-size: 20px;
    cursor: pointer;
    color: var(--web-text);
}

.web-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    text-decoration: none;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.web-btn-lg { padding: 14px 32px; font-size: 15px; }

.web-btn-primary {
    color: #fff;
    background: var(--web-blue);
    box-shadow: 0 4px 16px var(--web-blue-glow);
}

.web-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px var(--web-blue-glow);
    color: #fff;
}

.web-btn-outline {
    color: var(--web-text);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(15, 23, 42, 0.12);
}

.web-btn-outline:hover { background: #fff; color: var(--web-text); }

.web-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 500;
    color: var(--web-blue);
    text-decoration: none;
}

.web-link:hover { text-decoration: underline; }

.web-main { flex: 1; }

.web-hero-landing {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.web-hero-media-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.web-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.web-hero-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.web-hero-media-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.72) 0%,
        rgba(230, 242, 255, 0.45) 45%,
        rgba(200, 225, 255, 0.25) 100%
    );
}

.web-hero-stage {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 140px 40px 120px;
}

.web-hero-content {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.web-hero-title {
    will-change: transform, opacity;
}

.web-hero-content.is-slide-out .web-hero-title {
    animation: webHeroSlideOut 0.45s ease forwards;
}

.web-hero-content.is-slide-in .web-hero-title {
    animation: webHeroSlideIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes webHeroSlideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(48px);
    }
}

@keyframes webHeroSlideIn {
    from {
        opacity: 0;
        transform: translateX(-64px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.web-hero-title {
    margin: 0;
    max-width: 720px;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.web-hero-line { display: block; }

.web-hero-highlight {
    font-style: normal;
    color: var(--web-blue);
}

.web-hero-bar {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    padding: 0 40px 36px;
    pointer-events: none;
}

.web-hero-bar > * { pointer-events: auto; }

.web-hero-bar-copy {
    margin: 0;
    font-size: 11px;
    color: rgba(15, 23, 42, 0.4);
    justify-self: start;
}

.web-hero-tabs {
    display: flex;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    box-shadow:
        0 8px 32px rgba(26, 109, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.65);
    justify-self: center;
}

.web-hero-tab {
    position: relative;
    padding: 8px 18px 12px;
    font-size: 13px;
    font-family: inherit;
    font-weight: 500;
    color: var(--web-text);
    background: transparent;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: color 0.2s;
    white-space: nowrap;
    max-width: 240px;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: none;
}

.web-hero-tab:hover { color: rgba(15, 23, 42, 0.85); }

.web-hero-tab.is-active {
    color: var(--web-blue);
    background: transparent;
    box-shadow: none;
}

.web-hero-tab.is-active.is-progress::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    border-radius: 1px;
    background: var(--web-blue);
    animation: webHeroTabProgress var(--hero-tab-duration, 5s) linear forwards;
}

@keyframes webHeroTabProgress {
    from { width: 0; }
    to { width: 100%; }
}

.page-home .web-fab {
    bottom: 36px;
    right: 40px;
}

@keyframes webFadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.web-section { padding: 80px 0; }
.web-section.web-section--page { padding: 0; }
.web-section-alt { background: var(--web-bg-alt); }

.web-section-head { text-align: center; margin-bottom: 48px; }
.web-section-head--row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    text-align: left;
}

.web-section-title {
    margin: 0 0 12px;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.web-section-desc {
    margin: 12px 0 0;
    font-size: 16px;
    color: var(--web-text-muted);
}

.web-showcase-hero .web-section-desc {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.web-section-products,
.web-showcase-section {
    position: relative;
    padding: 96px 0 104px;
    background:
        radial-gradient(ellipse 90% 70% at 50% 15%, rgba(168, 205, 255, 0.72) 0%, rgba(210, 232, 255, 0.35) 42%, transparent 72%),
        radial-gradient(ellipse 70% 55% at 50% 85%, rgba(197, 224, 255, 0.4) 0%, transparent 65%),
        linear-gradient(180deg, #e8f2ff 0%, #f3f8ff 38%, #fafcff 72%, #ffffff 100%);
    overflow: hidden;
}

.web-section-products::before,
.web-showcase-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.55) 0%, transparent 45%),
        radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.35) 0%, transparent 40%);
    pointer-events: none;
}

.web-products-showcase,
.web-showcase {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.web-products-hero,
.web-showcase-hero {
    text-align: center;
    max-width: 920px;
    margin-bottom: 48px;
}

.web-showcase-hero--row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    max-width: 1200px;
    text-align: left;
}

.web-products-headline,
.web-showcase-headline {
    margin: 0 0 12px;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--web-text);
}

.web-products-headline-en,
.web-showcase-headline-en {
    margin: 0;
    font-size: clamp(22px, 3.5vw, 36px);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.03em;
    color: var(--web-text);
}

.web-section-products .web-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 1200px;
}

.web-section-products .web-product-card,
.web-product-grid--vision .web-product-card,
.web-showcase-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    padding: 28px 22px 24px;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0.18) 42%, rgba(220, 238, 255, 0.28) 100%);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow:
        0 10px 40px rgba(26, 109, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 -12px 24px rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(28px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.web-section-products .web-product-card::before,
.web-product-grid--vision .web-product-card::before,
.web-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95), transparent);
    pointer-events: none;
}

.web-section-products .web-product-card::after,
.web-product-grid--vision .web-product-card::after,
.web-showcase-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.42) 0%, transparent 38%, rgba(26, 109, 255, 0.04) 100%);
    pointer-events: none;
}

.web-section-products .web-product-card:hover,
.web-product-grid--vision .web-product-card:hover,
.web-showcase-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.92);
    box-shadow:
        0 20px 56px rgba(26, 109, 255, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -12px 28px rgba(255, 255, 255, 0.22);
}

.web-product-card-title,
.web-showcase-card-title {
    position: relative;
    z-index: 1;
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    color: var(--web-text);
}

.web-showcase-card-title a {
    color: inherit;
    text-decoration: none;
}

.web-showcase-card-title a:hover {
    color: var(--web-blue);
}

.web-product-card-icon,
.web-showcase-card-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.web-product-card-icon img,
.web-showcase-card-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.web-product-features,
.web-showcase-card-features {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.web-product-feature,
.web-showcase-card-feature {
    display: block;
    width: 100%;
    padding: 11px 14px;
    text-align: center;
    font-size: 13px;
    line-height: 1.45;
    color: #475569;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.55) 100%);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 999px;
    box-shadow:
        0 2px 10px rgba(15, 23, 42, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.web-showcase-card-feature--accent {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--web-blue);
}

.web-showcase-card-feature--label {
    font-size: 14px;
    font-weight: 600;
    color: var(--web-blue);
}

.web-showcase-grid {
    display: grid;
    gap: 24px;
    width: 100%;
    max-width: 1200px;
}

.web-showcase-grid--3 { grid-template-columns: repeat(3, 1fr); }
.web-showcase-grid--4 { grid-template-columns: repeat(4, 1fr); }
.web-showcase-grid--2 { grid-template-columns: repeat(2, 1fr); }

.web-showcase-card-icon--fa {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    font-size: 24px;
    color: var(--web-blue);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.55) 100%);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow:
        0 2px 10px rgba(15, 23, 42, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.web-showcase-card-icon--avatar {
    border-radius: 50%;
    font-size: 28px;
}

.web-section-news .web-showcase-card-feature:last-child {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.web-showcase-card--news .web-showcase-card-title {
    margin-bottom: 16px;
}

.web-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.web-product-card {
    padding: 32px 28px;
    background: var(--web-white);
    border-radius: var(--web-radius-lg);
    box-shadow: var(--web-shadow);
    border: 1px solid rgba(15, 23, 42, 0.04);
    transition: transform 0.25s, box-shadow 0.25s;
}

.web-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(26, 109, 255, 0.1);
}

.web-product-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--web-blue);
    background: rgba(26, 109, 255, 0.08);
    border-radius: 14px;
}

.web-product-card h3 { margin: 0 0 12px; font-size: 20px; }
.web-product-card > p { margin: 0 0 20px; font-size: 14px; color: var(--web-text-muted); line-height: 1.7; }

.web-product-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.web-tag {
    padding: 6px 14px;
    font-size: 12px;
    color: var(--web-blue);
    background: rgba(26, 109, 255, 0.06);
    border-radius: 999px;
}

.web-adv-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 1200px;
}

.web-case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 1200px;
}

.web-case-grid--page {
    max-width: none;
}

.web-case-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 10px 40px rgba(26, 109, 255, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.web-case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(26, 109, 255, 0.12);
}

.web-case-card-media {
    display: block;
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e8f2ff;
}

.web-case-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.web-case-card:hover .web-case-card-media img {
    transform: scale(1.04);
}

.web-case-card-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--web-blue);
    background: rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
}

.web-case-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 22px 24px;
}

.web-case-card-client {
    margin: 0 0 8px;
    font-size: 13px;
    color: var(--web-text-muted);
}

.web-case-card-title {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--web-text);
}

.web-case-card-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 16px;
}

.web-case-card-stat {
    padding: 10px 8px;
    text-align: center;
    background: rgba(26, 109, 255, 0.06);
    border-radius: 12px;
}

.web-case-card-stat strong {
    display: block;
    margin-bottom: 4px;
    font-size: 18px;
    font-weight: 700;
    color: var(--web-blue);
    line-height: 1.2;
}

.web-case-card-stat span {
    display: block;
    font-size: 11px;
    line-height: 1.3;
    color: var(--web-text-muted);
}

.web-case-card-desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--web-text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.web-case-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.web-case-card-title a:hover { color: var(--web-blue); }

/* Detail pages (news & cases) — flat layout, no card slab */
.web-page-hero--detail {
    padding: 72px 0 32px;
    background: linear-gradient(180deg, var(--web-bg-alt) 0%, var(--web-bg) 100%);
}

.web-page-hero--detail .web-detail-breadcrumb {
    margin-bottom: 0;
}

.web-detail-section.web-section.web-section--page {
    padding: 24px 0 48px;
}

.web-detail-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 840px;
    margin: 0 auto 24px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--web-text-muted);
}

.web-detail-breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--web-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.web-detail-breadcrumb-link:hover { color: var(--web-blue); }

.web-detail-breadcrumb-sep { color: rgba(15, 23, 42, 0.2); user-select: none; }

.web-detail-breadcrumb-current {
    color: var(--web-text);
    font-weight: 500;
    max-width: min(100%, 520px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.web-detail-card {
    max-width: 840px;
    margin: 0 auto;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.web-detail-header {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.web-detail-title-row {
    display: flex;
    align-items: flex-start;
    gap: 16px 20px;
}

.web-detail-title-row .web-detail-title {
    flex: 1;
    min-width: 0;
    margin-bottom: 0;
}

.web-detail-title-row .web-detail-tag {
    flex-shrink: 0;
    margin: 0.35em 0 0;
    margin-inline-start: auto;
}

.web-detail-title-row + .web-detail-client {
    margin-top: 12px;
}

.web-detail-title {
    margin: 0 0 16px;
    font-size: clamp(26px, 3.2vw, 36px);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.web-detail-header > .web-detail-title:last-child { margin-bottom: 0; }

.web-detail-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 14px;
    color: var(--web-text-muted);
}

.web-detail-meta-item {
    display: inline-flex;
    align-items: center;
}

.web-detail-meta-item + .web-detail-meta-item::before {
    content: '';
    width: 4px;
    height: 4px;
    margin: 0 12px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.2);
}

.web-detail-tag {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--web-blue);
    background: rgba(26, 109, 255, 0.08);
    border-radius: 999px;
    white-space: nowrap;
}

.web-detail-client {
    margin: 0;
    font-size: 16px;
    color: var(--web-text-muted);
}

.web-detail-summary {
    margin-bottom: 28px;
    padding: 20px 24px;
    border-radius: var(--web-radius);
    background: linear-gradient(135deg, rgba(26, 109, 255, 0.06) 0%, rgba(238, 244, 255, 0.85) 100%);
    border: 1px solid rgba(26, 109, 255, 0.12);
}

.web-detail-summary p {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: #475569;
}

.web-detail-cover {
    margin: 0 0 32px;
    border-radius: var(--web-radius);
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.web-detail-cover img {
    width: 100%;
    display: block;
}

.web-detail-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
    padding: 28px 32px;
    background: linear-gradient(135deg, rgba(26, 109, 255, 0.04) 0%, rgba(238, 244, 255, 0.65) 100%);
    border: 1px solid rgba(26, 109, 255, 0.1);
    border-radius: var(--web-radius);
}

.web-detail-stat { text-align: center; }

.web-detail-stat strong {
    display: block;
    margin-bottom: 6px;
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--web-blue);
}

.web-detail-stat span {
    font-size: 13px;
    color: var(--web-text-muted);
}

.web-detail-body {
    font-size: 16px;
    line-height: 1.85;
    color: var(--web-text);
}

.web-detail-body.web-case-detail-body { white-space: pre-line; }

.web-detail-body p { margin: 0 0 1.25em; }
.web-detail-body p:last-child { margin-bottom: 0; }
.web-detail-body h2,
.web-detail-body h3,
.web-detail-body h4 {
    margin: 1.75em 0 0.75em;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.01em;
}
.web-detail-body h2 { font-size: 1.5em; }
.web-detail-body h3 { font-size: 1.25em; }
.web-detail-body ul,
.web-detail-body ol {
    margin: 0 0 1.25em;
    padding-left: 1.5em;
}
.web-detail-body li { margin-bottom: 0.5em; }
.web-detail-body blockquote {
    margin: 1.5em 0;
    padding: 16px 20px;
    border-left: 4px solid var(--web-blue);
    background: rgba(26, 109, 255, 0.04);
    border-radius: 0 8px 8px 0;
    color: var(--web-text-muted);
}
.web-detail-body a { color: var(--web-blue); }
.web-detail-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1em 0;
}
.web-detail-body table {
    width: 100%;
    margin: 1.5em 0;
    border-collapse: collapse;
    font-size: 14px;
}
.web-detail-body th,
.web-detail-body td {
    padding: 10px 14px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    text-align: left;
}
.web-detail-body th {
    background: var(--web-bg-alt);
    font-weight: 600;
}

.web-detail-footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.web-detail-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--web-blue);
    text-decoration: none;
    border: 1px solid rgba(26, 109, 255, 0.2);
    border-radius: 999px;
    background: rgba(26, 109, 255, 0.04);
    transition: background 0.2s, border-color 0.2s;
}

.web-detail-back-link:hover {
    background: rgba(26, 109, 255, 0.1);
    border-color: var(--web-blue);
}

.web-case-detail-layout { max-width: 800px; }

.web-case-detail-tag {
    display: inline-block;
    margin-bottom: 12px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--web-blue);
    background: rgba(26, 109, 255, 0.08);
    border-radius: 999px;
}

.web-case-detail-client {
    margin: 8px 0 0;
    font-size: 15px;
    color: var(--web-text-muted);
}

.web-case-detail-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
    padding: 24px;
    background: var(--web-surface);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--web-radius);
}

.web-case-detail-stat {
    text-align: center;
}

.web-case-detail-stat strong {
    display: block;
    margin-bottom: 4px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--web-blue);
}

.web-case-detail-stat span {
    font-size: 13px;
    color: var(--web-text-muted);
}

.web-case-detail-body { white-space: pre-line; }

.web-case-detail-back {
    margin: 40px 0 0;
    padding-top: 24px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.web-case-detail-back a {
    font-size: 14px;
    color: var(--web-blue);
    text-decoration: none;
}

.web-case-detail-back a:hover { text-decoration: underline; }

.web-case-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.web-case-tab {
    padding: 10px 24px;
    font-size: 14px;
    font-family: inherit;
    font-weight: 500;
    color: var(--web-text-muted);
    background: var(--web-white);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.web-case-tab.is-active {
    color: var(--web-blue);
    background: rgba(26, 109, 255, 0.08);
    border-color: var(--web-blue);
}

.web-case-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.web-case-panels { flex: 1; position: relative; min-height: 400px; }

.web-case-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    animation: webFadeIn 0.4s ease;
}

.web-case-panel.is-active { display: grid; }

.web-case-image {
    position: relative;
    border-radius: var(--web-radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

.web-case-counter {
    position: absolute;
    bottom: 16px;
    right: 16px;
    padding: 4px 12px;
    font-size: 12px;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 999px;
}

.web-case-body h3 { margin: 0 0 24px; font-size: 24px; }

.web-case-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.web-case-stat-label { display: block; font-size: 12px; color: var(--web-text-muted); margin-bottom: 4px; }
.web-case-stat-value { font-size: 28px; font-weight: 700; color: var(--web-blue); }

.web-case-desc { margin: 0 0 20px; font-size: 15px; color: var(--web-text-muted); line-height: 1.8; }

.web-case-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--web-blue);
    background: var(--web-white);
    border: 1px solid rgba(26, 109, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
}

.web-case-arrow:hover { background: rgba(26, 109, 255, 0.08); }

.web-home-news-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    width: 100%;
    max-width: 1200px;
}

.web-home-news-featured-img {
    display: block;
    overflow: hidden;
    border-radius: 20px;
}

.web-home-news-featured-img img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.web-home-news-featured-card:hover .web-home-news-featured-img img {
    transform: scale(1.03);
}

.web-home-news-featured-body {
    display: flex;
    gap: 24px;
    margin-top: 24px;
    align-items: flex-start;
}

.web-home-news-date {
    flex-shrink: 0;
    width: 56px;
    text-align: center;
    color: #cbd5e1;
    line-height: 1.2;
}

.web-home-news-date-day {
    display: block;
    font-size: 36px;
    font-weight: 300;
    line-height: 1;
}

.web-home-news-date-ym {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    letter-spacing: 0.02em;
}

.web-home-news-featured-content h3 {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.45;
}

.web-home-news-featured-content h3 a,
.web-home-news-list-content h3 a {
    color: var(--web-text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.web-home-news-featured-content h3 a:hover,
.web-home-news-list-content h3 a:hover {
    color: var(--web-blue);
}

.web-home-news-featured-content p {
    margin: 0;
    font-size: 14px;
    color: var(--web-text-muted);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.web-home-news-list-item {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    align-items: flex-start;
}

.web-home-news-list-item:first-child {
    padding-top: 0;
}

.web-home-news-list-content {
    flex: 1;
    min-width: 0;
}

.web-home-news-list-content h3 {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
}

.web-home-news-list-content p {
    margin: 0;
    font-size: 13px;
    color: var(--web-text-muted);
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.web-news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 1200px;
}

.web-news-grid--page { grid-template-columns: repeat(3, 1fr); }

.web-news-card {
    background: var(--web-white);
    border-radius: var(--web-radius);
    overflow: hidden;
    box-shadow: var(--web-shadow);
    transition: transform 0.2s;
}

.web-news-card:hover { transform: translateY(-3px); }

.web-news-img { display: block; aspect-ratio: 16/10; overflow: hidden; }
.web-news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.web-news-card:hover .web-news-img img { transform: scale(1.05); }

.web-news-body { padding: 20px; }
.web-news-body time { font-size: 12px; color: var(--web-text-muted); }
.web-news-body h3 { margin: 8px 0; font-size: 16px; line-height: 1.4; }
.web-news-body h3 a { color: inherit; text-decoration: none; }
.web-news-body h3 a:hover { color: var(--web-blue); }
.web-news-body p { margin: 0; font-size: 13px; color: var(--web-text-muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.web-partner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 32px;
    width: 100%;
    max-width: 1200px;
}

.web-partner-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
}

.web-partner-mark {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    height: 52px;
    padding: 0 10px;
    border-radius: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
}

.web-partner-mark-text {
    font-size: 14px;
    white-space: nowrap;
}

.web-partner-name {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--web-text);
    text-align: left;
}

.web-page-hero {
    padding: 88px 0 40px;
    background: linear-gradient(180deg, var(--web-bg-alt) 0%, var(--web-bg) 100%);
}

body.page-news .web-main > .web-page-hero:first-child,
body.page-cases .web-main > .web-page-hero:first-child {
    padding: 120px 0 48px;
    background:
        radial-gradient(ellipse 90% 70% at 50% 0%, rgba(168, 205, 255, 0.55) 0%, rgba(210, 232, 255, 0.25) 48%, transparent 72%),
        linear-gradient(180deg, #dce9f8 0%, #edf4fc 42%, #f5f9ff 68%, var(--web-bg) 100%);
}

.web-page-hero--showcase {
    padding: 88px 0 64px;
    text-align: center;
    background:
        radial-gradient(ellipse 90% 70% at 50% 15%, rgba(168, 205, 255, 0.72) 0%, rgba(210, 232, 255, 0.35) 42%, transparent 72%),
        radial-gradient(ellipse 70% 55% at 50% 85%, rgba(197, 224, 255, 0.4) 0%, transparent 65%),
        linear-gradient(180deg, #e8f2ff 0%, #f3f8ff 38%, #fafcff 72%, #ffffff 100%);
}

.web-page-hero--showcase .web-page-desc {
    max-width: 720px;
    margin: 16px auto 0;
}

/* Flat content pages (about, vision) */
.web-page-hero--content {
    text-align: center;
}

.web-page-hero--content .web-page-desc {
    max-width: 720px;
    margin: 16px auto 0;
}

.web-content-headline {
    margin: 0 0 12px;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--web-text);
}

.web-content-headline-en {
    margin: 0;
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 600;
    line-height: 1.35;
    color: var(--web-text-muted);
}

.web-content-section {
    padding: 64px 0;
    background: var(--web-bg);
}

.web-content-section--alt {
    background: var(--web-white);
}

.web-content-section.web-section-vision {
    padding-bottom: 80px;
}

.web-content-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.web-content-head {
    text-align: center;
    max-width: 920px;
    margin-bottom: 40px;
}

.web-content-head .web-section-desc {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.web-content-grid {
    display: grid;
    gap: 24px;
    width: 100%;
}

.web-content-grid--3 { grid-template-columns: repeat(3, 1fr); max-width: 1100px; }
.web-content-grid--4 { grid-template-columns: repeat(4, 1fr); max-width: 1200px; }
.web-content-grid--vision { grid-template-columns: repeat(4, 1fr); max-width: 1200px; }

.web-content-card {
    background: var(--web-white);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--web-radius);
    box-shadow: var(--web-shadow);
    padding: 28px 24px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.web-content-section--alt .web-content-card,
.web-content-section:not(.web-content-section--alt) .web-content-card {
    background: var(--web-white);
}

.web-content-card:hover {
    border-color: rgba(26, 109, 255, 0.18);
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}

.web-content-card-title {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    color: var(--web-text);
}

.web-content-card-title--left { text-align: left; }
.web-content-card-title--accent { color: var(--web-blue); }

.web-content-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    font-size: 20px;
    color: var(--web-blue);
    background: rgba(26, 109, 255, 0.08);
    border-radius: 12px;
}

.web-content-card-icon--avatar { border-radius: 50%; }
.web-content-card-icon--product {
    float: right;
    width: 40px;
    height: 40px;
    margin: 0 0 12px 12px;
    background: transparent;
}

.web-content-card-icon--product img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.web-content-card-role {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--web-blue);
    text-align: center;
}

.web-content-card-desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: var(--web-text-muted);
    text-align: center;
}

.web-content-card--honor {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.web-content-card-year {
    display: inline-block;
    margin-bottom: 10px;
    padding: 4px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--web-blue);
    background: rgba(26, 109, 255, 0.08);
    border-radius: 999px;
}

.web-content-card--product {
    text-align: left;
}

.web-content-card--product::after {
    content: '';
    display: block;
    clear: both;
}

.web-content-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.web-content-tag {
    display: inline-block;
    padding: 6px 12px;
    font-size: 13px;
    color: var(--web-text-muted);
    background: var(--web-bg);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
}

.web-content-section .web-history-panel {
    border-radius: var(--web-radius);
    overflow: hidden;
}

.web-content-section .web-history-node {
    background: var(--web-white);
    border: 2px solid rgba(15, 23, 42, 0.08);
    box-shadow: none;
}

.web-content-section .web-history-node.is-active {
    border-color: var(--web-blue);
    background: rgba(26, 109, 255, 0.06);
    box-shadow: 0 0 0 4px rgba(26, 109, 255, 0.12);
}

.web-page-hero--vision { text-align: center; }

.web-page-title {
    margin: 0 0 12px;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
}

.web-page-title--article { font-size: clamp(24px, 3vw, 36px); }

.web-page-desc { margin: 0; font-size: 16px; color: var(--web-text-muted); }

.web-breadcrumb { margin-bottom: 16px; font-size: 13px; color: var(--web-text-muted); }
.web-breadcrumb a { color: var(--web-blue); text-decoration: none; }

.web-article-meta { margin: 0; font-size: 13px; color: var(--web-text-muted); display: flex; gap: 16px; flex-wrap: wrap; }

.web-article-layout { max-width: 800px; }

.web-article-cover { margin: 0 0 32px; border-radius: var(--web-radius); overflow: hidden; }
.web-article-cover img { width: 100%; display: block; }

.web-article-body { font-size: 16px; line-height: 1.8; color: var(--web-text); }
.web-article-body img { max-width: 100%; height: auto; border-radius: 8px; }

.web-filter-tabs { display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; }

.web-filter-tab {
    padding: 8px 20px;
    font-size: 14px;
    color: var(--web-text-muted);
    text-decoration: none;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    transition: all 0.2s;
}

.web-filter-tab.is-active,
.web-filter-tab:hover {
    color: var(--web-blue);
    border-color: var(--web-blue);
    background: rgba(26, 109, 255, 0.06);
}

.web-pagination { margin-top: 40px; text-align: center; }

.web-history {
    width: 100%;
    max-width: 1100px;
}

.web-history-panel {
    position: relative;
    height: 360px;
    padding: 0;
    overflow: hidden;
    margin-bottom: 56px;
}

.web-history-pane {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.web-history-pane.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

@keyframes webHistoryFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.web-history-media {
    height: 100%;
    min-height: 0;
    overflow: hidden;
    background: rgba(26, 109, 255, 0.06);
}

.web-history-media img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    display: block;
}

.web-history-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    min-height: 0;
    padding: 40px 36px;
    overflow: hidden;
}

.web-history-date {
    margin: 0 0 12px;
    flex-shrink: 0;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--web-blue);
}

.web-history-title {
    margin: 0 0 16px;
    flex-shrink: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--web-text);
}

.web-history-desc {
    margin: 0;
    flex: 1;
    min-height: 0;
    font-size: 15px;
    line-height: 1.8;
    color: var(--web-text-muted);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.web-history-nav {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 0 8px;
}

.web-history-nav::before {
    content: "";
    position: absolute;
    left: 40px;
    right: 40px;
    top: 50%;
    height: 2px;
    margin-top: -1px;
    background: linear-gradient(90deg, rgba(26, 109, 255, 0.08), rgba(26, 109, 255, 0.28), rgba(26, 109, 255, 0.08));
    z-index: 0;
}

.web-history-node {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    padding: 0;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--web-blue);
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.55) 100%);
    border: 2px solid rgba(26, 109, 255, 0.22);
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(26, 109, 255, 0.08);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.web-history-node:hover {
    border-color: rgba(26, 109, 255, 0.45);
    transform: translateY(-2px);
}

.web-history-node.is-active {
    width: 80px;
    height: 80px;
    color: #fff;
    background: linear-gradient(135deg, var(--web-blue), var(--web-blue-dark));
    border-color: var(--web-blue);
    box-shadow: 0 10px 32px var(--web-blue-glow);
    transform: scale(1.05);
}

.web-history-node-year {
    display: block;
    padding: 0 6px;
}

@media (max-width: 900px) {
    .web-history-panel {
        height: 480px;
    }

    .web-history-pane {
        grid-template-columns: 1fr;
        grid-template-rows: 200px 1fr;
    }

    .web-history-body {
        padding: 24px 24px 28px;
        justify-content: flex-start;
    }

    .web-history-desc {
        -webkit-line-clamp: 4;
    }

    .web-history-nav {
        overflow-x: auto;
        justify-content: flex-start;
        gap: 20px;
        padding: 8px 4px 4px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .web-history-nav::-webkit-scrollbar { display: none; }

    .web-history-nav::before {
        left: 24px;
        right: 24px;
    }

    .web-history-node {
        width: 60px;
        height: 60px;
        font-size: 12px;
    }

    .web-history-node.is-active {
        width: 68px;
        height: 68px;
    }
}

.web-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
    width: 100%;
    max-width: 1000px;
}

.web-contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.web-contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 18px;
    background: var(--web-white);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--web-radius);
    box-shadow: var(--web-shadow);
}

.web-contact-item-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--web-blue);
    background: rgba(26, 109, 255, 0.08);
    border-radius: 12px;
}

.web-contact-item strong { display: block; margin-bottom: 4px; font-size: 14px; }
.web-contact-item p { margin: 0; font-size: 14px; color: var(--web-text-muted); }

.web-contact-form-card {
    padding: 32px 28px;
}

.web-contact-form-desc {
    margin: 0 0 24px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--web-text-muted);
}

.web-consult-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.web-consult-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.web-consult-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--web-text);
}

.web-consult-required {
    color: #ef4444;
}

.web-consult-input,
.web-consult-textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    font-family: inherit;
    color: var(--web-text);
    background: var(--web-bg);
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 10px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.web-consult-input:focus,
.web-consult-textarea:focus {
    outline: none;
    border-color: var(--web-blue);
    box-shadow: 0 0 0 3px rgba(26, 109, 255, 0.12);
    background: var(--web-white);
}

.web-consult-textarea {
    resize: vertical;
    min-height: 120px;
}

.web-consult-submit {
    width: 100%;
    margin-top: 4px;
}

.web-consult-form .auth-mobile-group {
    display: flex;
    width: 100%;
    align-items: stretch;
    background: var(--web-bg);
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.web-consult-form .auth-mobile-group:focus-within {
    border-color: var(--web-blue);
    box-shadow: 0 0 0 3px rgba(26, 109, 255, 0.12);
    background: var(--web-white);
}

.web-consult-form .auth-mobile-input {
    flex: 1;
    min-width: 0;
    width: auto;
    min-height: 46px;
    padding: 12px 14px;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent;
}

.web-consult-form .auth-mobile-input:focus {
    border: none !important;
    box-shadow: none !important;
    outline: none;
}

.web-consult-form .mobile-code-picker {
    position: relative;
    flex: 0 0 auto;
    min-width: 112px;
    max-width: 140px;
    border-right: 1px solid rgba(15, 23, 42, 0.12);
}

.web-consult-form .mobile-code-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    min-height: 46px;
    padding: 0 10px 0 12px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--web-text);
    background: transparent;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
}

.web-consult-form .mobile-code-trigger::after {
    content: '';
    width: 12px;
    height: 12px;
    margin-left: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M3 4.5 6 7.5 9 4.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.web-consult-form .mobile-code-trigger-label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    line-height: 1.2;
}

.web-consult-form .mobile-code-trigger-name {
    max-width: 72px;
    font-size: 11px;
    font-weight: 400;
    color: var(--web-text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.web-consult-form .mobile-code-trigger-dial {
    font-size: 13px;
    font-weight: 600;
    color: var(--web-text);
    white-space: nowrap;
}

.web-consult-form .mobile-code-flag {
    width: 18px;
    height: 14px;
    border-radius: 2px;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.06);
}

body.page-web .mobile-code-dropdown,
body.page-web .mobile-code-dropdown--portal {
    position: fixed;
    z-index: 10060;
    width: 260px;
    max-width: calc(100vw - 16px);
    background: var(--web-white);
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.14);
    overflow: hidden;
    box-sizing: border-box;
}

body.page-web .mobile-code-dropdown .mobile-code-search-wrap,
body.page-web .mobile-code-dropdown--portal .mobile-code-search-wrap {
    padding: 6px 8px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    background: var(--web-white);
}

body.page-web .mobile-code-dropdown .mobile-code-search,
body.page-web .mobile-code-dropdown--portal .mobile-code-search {
    width: 100%;
    height: 28px;
    min-height: 28px;
    padding: 4px 8px;
    font-size: 12px;
    line-height: 1.3;
    border-radius: 6px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: none;
    box-sizing: border-box;
    background: var(--web-white);
    color: var(--web-text);
}

body.page-web .mobile-code-dropdown .mobile-code-search:focus,
body.page-web .mobile-code-dropdown--portal .mobile-code-search:focus {
    outline: none;
    border-color: var(--web-blue);
    box-shadow: 0 0 0 2px rgba(26, 109, 255, 0.12);
}

body.page-web .mobile-code-dropdown .mobile-code-list,
body.page-web .mobile-code-dropdown--portal .mobile-code-list {
    list-style: none;
    margin: 0;
    padding: 2px 0;
    max-height: 220px;
    overflow-y: auto;
}

body.page-web .mobile-code-dropdown .mobile-code-item,
body.page-web .mobile-code-dropdown--portal .mobile-code-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    font-size: 13px;
    color: var(--web-text);
    cursor: pointer;
}

body.page-web .mobile-code-dropdown .mobile-code-item:hover,
body.page-web .mobile-code-dropdown .mobile-code-item.is-active,
body.page-web .mobile-code-dropdown--portal .mobile-code-item:hover,
body.page-web .mobile-code-dropdown--portal .mobile-code-item.is-active {
    background: rgba(26, 109, 255, 0.08);
}

body.page-web .mobile-code-dropdown .mobile-code-item-name,
body.page-web .mobile-code-dropdown--portal .mobile-code-item-name {
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

body.page-web .mobile-code-dropdown .mobile-code-item-dial,
body.page-web .mobile-code-dropdown--portal .mobile-code-item-dial {
    color: var(--web-text-muted);
    font-size: 12px;
    white-space: nowrap;
}

body.page-web .mobile-code-dropdown .mobile-code-flag,
body.page-web .mobile-code-dropdown--portal .mobile-code-flag {
    width: 18px;
    height: 14px;
    border-radius: 2px;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.06);
}

.web-section-vision { padding-bottom: 112px; }

.web-vision-products {
    width: 100%;
    margin-top: 16px;
}

.web-vision-products .web-showcase-hero { margin-bottom: 40px; }

.web-product-grid--vision {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.web-vision-compare {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 28px;
    align-items: stretch;
    width: 100%;
    max-width: 1100px;
    margin-bottom: 56px;
}

.web-vision-block {
    text-align: left;
    min-height: 100%;
}

.web-vision-block .web-content-card-title {
    font-size: 22px;
}

.web-vision-block-sub {
    margin: 0 0 20px;
    font-size: 14px;
    color: var(--web-text-muted);
}

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

.web-vision-list li {
    padding: 10px 0;
    margin-bottom: 0;
    font-size: 14px;
    color: var(--web-text);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    background: none;
    border-radius: 0;
    box-shadow: none;
}

.web-vision-list li:last-child {
    border-bottom: none;
}

.web-vision-list li i { color: var(--web-blue); margin-right: 8px; }

.web-vision-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
}

.web-vision-divider-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    background: var(--web-blue);
    border-radius: 50%;
}

.web-vision-sphere {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.web-vision-sphere-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, var(--web-blue-glow) 0%, transparent 70%);
    animation: webPulse 3s ease-in-out infinite;
}

.web-vision-sphere-core {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--web-blue), var(--web-blue-dark));
    border-radius: 50%;
    box-shadow: 0 0 40px var(--web-blue-glow);
}

@keyframes webPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.web-vision-cta { text-align: center; margin-top: 48px; }

.web-fab {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 150;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    background: var(--web-blue);
    border-radius: 999px;
    box-shadow: 0 4px 20px var(--web-blue-glow);
    transition: transform 0.2s;
}

.web-fab:hover { transform: translateY(-2px); color: #fff; }

.web-footer {
    padding: 60px 0 30px;
    background: #0a1628;
    color: rgba(255, 255, 255, 0.88);
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.web-footer-inner { padding: 0 24px; }

.web-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.web-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.web-footer-logo em {
    font-style: normal;
    font-weight: 600;
}

.web-footer-logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

.web-footer-desc {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1.7;
}

.web-footer-contact {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.web-footer-contact li {
    margin-bottom: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
}

.web-footer-contact li:last-child { margin-bottom: 0; }

.web-footer-col h4 {
    color: #fff;
    font-size: 16px;
    margin: 0 0 16px;
    font-weight: 600;
}

.web-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.web-footer-col li { margin-bottom: 10px; }

.web-footer-col li:last-child { margin-bottom: 0; }

.web-footer-col a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s, transform 0.2s;
    display: inline-block;
}

.web-footer-col a:hover {
    color: #fff;
    transform: translateX(4px);
}

.web-footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

.web-footer-bottom p { margin: 0; }

.web-footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.web-footer-bottom a:hover { color: rgba(255, 255, 255, 0.72); }

@media (max-width: 1024px) {
    .web-header-inner {
        flex-wrap: wrap;
        padding: 12px 24px;
    }
    .web-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    .web-hero-stage { padding: 120px 24px 100px; }
    .web-hero-bar {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 24px 28px;
    }
    .web-hero-bar-copy { justify-self: center; }
    .web-hero-tabs {
        justify-self: stretch;
        width: 100%;
        max-width: 640px;
        margin: 0 auto;
        flex-wrap: wrap;
        justify-content: center;
    }
    .web-hero-tab { max-width: 100%; }

    .web-section-products .web-product-grid,
    .web-product-grid,
    .web-product-grid--vision,
    .web-showcase-grid--3,
    .web-showcase-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .web-content-grid--3,
    .web-content-grid--4,
    .web-content-grid--vision { grid-template-columns: repeat(2, 1fr); }
    .web-adv-stats { grid-template-columns: repeat(2, 1fr); }
    .web-home-news-layout { grid-template-columns: 1fr; gap: 32px; }
    .web-news-grid,
    .web-news-grid--page,
    .web-case-grid { grid-template-columns: repeat(2, 1fr); }
    .web-partner-grid { grid-template-columns: repeat(3, 1fr); }
    .web-case-panel.is-active { grid-template-columns: 1fr; }
    .web-vision-compare { grid-template-columns: 1fr; }
    .web-vision-divider { padding: 8px 0; }
    .web-vision-sphere { margin: 0 auto; }
    .web-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .web-header-inner { padding: 12px 16px; }
    .web-header-actions { display: none; }
    .web-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        padding: 12px 16px;
        margin: 0;
        border-radius: 0;
        background: rgba(255, 255, 255, 0.98);
        border: none;
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: var(--web-shadow);
    }
    .web-nav.is-open { display: flex; }
    .web-nav-link { width: 100%; text-align: center; }
    .web-nav-link.is-active {
        color: var(--web-blue);
        background: transparent;
        box-shadow: none;
    }
    .web-header.lang-open .web-nav-link.is-active,
    .web-header:has(.web-lang-dropdown:hover) .web-nav-link.is-active,
    .web-header:has(.web-lang-dropdown:focus-within) .web-nav-link.is-active {
        color: var(--web-blue);
        background: transparent;
        box-shadow: none;
    }
    .web-nav-product {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        margin-top: 4px;
        padding: 14px 16px 4px;
        font-size: 14px;
        font-weight: 600;
        color: var(--web-text);
        text-decoration: none;
        border-top: 1px solid rgba(15, 23, 42, 0.08);
    }
    .web-nav-product:hover { color: var(--web-blue); }
    .web-nav-product-icon {
        width: 28px;
        height: 28px;
        object-fit: contain;
        border-radius: 50%;
        background: #fff;
        padding: 2px;
        box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.06);
    }
    .web-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }
    .web-header-inner { position: relative; }

    .web-hero-stage { padding: 100px 16px 72px; }

    .web-hero-bar {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 16px max(20px, env(safe-area-inset-bottom));
    }

    .web-hero-bar-copy {
        display: none;
    }

    .web-hero-tabs {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: none;
        gap: 4px;
        padding: 10px 12px;
        border-radius: 16px;
    }

    .web-hero-tab {
        width: 100%;
        max-width: none;
        padding: 10px 12px 14px;
        font-size: 12px;
        line-height: 1.45;
        white-space: normal;
        text-align: center;
        border-radius: 10px;
    }

    .web-hero-tab.is-active.is-progress::after {
        left: 0;
        right: 0;
        bottom: 0;
        height: 2px;
        width: 0;
    }

    .page-home .web-fab { bottom: 20px; right: 16px; }
    .web-section-products { padding: 72px 0 80px; }
    .web-products-hero { margin-bottom: 32px; }
    .web-section-products .web-product-grid,
    .web-product-grid,
    .web-product-grid--vision,
    .web-showcase-grid--3,
    .web-showcase-grid--4,
    .web-showcase-grid--2,
    .web-content-grid--3,
    .web-content-grid--4,
    .web-content-grid--vision,
    .web-adv-stats,
    .web-home-news-layout,
    .web-news-grid,
    .web-news-grid--page,
    .web-case-grid,
    .web-partner-grid { grid-template-columns: 1fr; }
    .web-case-card-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .web-contact-grid { grid-template-columns: 1fr; }
    .web-section { padding: 56px 0; }
    body.page-web:not(.page-home):not(.page-news):not(.page-cases):not(.page-about):not(.page-vision) .web-main {
        padding-top: 28px;
    }
    body.page-news .web-main > .web-page-hero:first-child,
    body.page-cases .web-main > .web-page-hero:first-child {
        padding: 96px 0 36px;
    }
    .web-page-hero { padding: 72px 0 32px; }
    .web-page-hero--detail { padding: 64px 0 24px; }
    .web-detail-section.web-section.web-section--page { padding: 20px 0 40px; }
    .web-detail-card { padding: 0; }
    .web-detail-title-row { flex-wrap: wrap; }
    .web-detail-title-row .web-detail-tag { margin-inline-start: auto; }
    .web-detail-stats { padding: 20px 16px; gap: 16px; }
    .web-section-head--row,
    .web-showcase-hero--row { flex-direction: column; align-items: flex-start; gap: 16px; }
    .web-case-arrow { display: none; }
    .web-footer-grid { grid-template-columns: 1fr; }
    .web-fab { bottom: 20px; right: 20px; padding: 12px 18px; }
    .web-fab span { display: none; }
}

@media (max-width: 480px) {
    .web-hero-tab {
        font-size: 11px;
        padding: 9px 10px;
    }
}

/* RTL overrides */
html[dir="rtl"] body.web-body {
    text-align: right;
}

html[dir="rtl"] .web-lang-dropdown .lang-dropdown-menu {
    left: auto;
    right: 0;
}

html[dir="rtl"] .web-section-head--row,
html[dir="rtl"] .web-showcase-hero--row,
html[dir="rtl"] .web-partner-name,
html[dir="rtl"] .web-case-card-body,
html[dir="rtl"] .web-article-body,
html[dir="rtl"] .web-case-detail-body,
html[dir="rtl"] .web-detail-body,
html[dir="rtl"] .web-about-block,
html[dir="rtl"] .web-vision-content {
    text-align: right;
}

html[dir="rtl"] .web-detail-body th,
html[dir="rtl"] .web-detail-body td {
    text-align: right;
}

html[dir="rtl"] .web-detail-body blockquote {
    border-left: none;
    border-right: 4px solid var(--web-blue);
    border-radius: 8px 0 0 8px;
}

html[dir="rtl"] .web-hero-bar-copy {
    justify-self: end;
}

html[dir="rtl"] .web-case-card-tag {
    left: auto;
    right: 14px;
}

html[dir="rtl"] .web-vision-list li i {
    margin-right: 0;
    margin-left: 8px;
}

html[dir="rtl"] .web-fab,
html[dir="rtl"] .page-home .web-fab {
    right: auto;
    left: 32px;
}

html[dir="rtl"] .web-footer-col a:hover {
    transform: translateX(-4px);
}

html[dir="rtl"] .web-product-pill {
    padding: 8px 10px 8px 18px;
}

html[dir="rtl"] .web-hero-content.is-slide-out .web-hero-title {
    animation-name: webHeroSlideOutRtl;
}

html[dir="rtl"] .web-hero-content.is-slide-in .web-hero-title {
    animation-name: webHeroSlideInRtl;
}

@keyframes webHeroSlideOutRtl {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-48px);
    }
}

@keyframes webHeroSlideInRtl {
    from {
        opacity: 0;
        transform: translateX(64px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    html[dir="rtl"] .web-fab,
    html[dir="rtl"] .page-home .web-fab {
        left: 16px;
    }
}
