/* Premium homepage visual system for www.00mh.cn */
:root {
    --primary-gradient: linear-gradient(135deg, #2563eb 0%, #4f46e5 52%, #7c3aed 100%);
    --secondary-gradient: linear-gradient(135deg, #38bdf8 0%, #6366f1 100%);
    --accent-color: #2563eb;
    --text-main: #0b1220;
    --text-secondary: #445168;
    --text-light: #6b7890;
    --bg-body: #ffffff;
    --bg-white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.88);
    --container-width: 1240px;
    --border-radius: 18px;
    --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
    --shadow-hover: 0 24px 64px rgba(15, 23, 42, 0.12);
    --premium-border: #e4e9f2;
    --premium-surface: #f6f8fc;
    --premium-navy: #07111f;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    background: #fff;
    color: var(--text-main);
    font-family: "Inter", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
    font-size: 16px;
    line-height: 1.72;
    -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

::selection {
    background: rgba(37, 99, 235, 0.18);
    color: #0b1220;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(59, 130, 246, 0.35);
    outline-offset: 3px;
}

.container {
    width: min(100% - 48px, var(--container-width));
    padding: 0;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9) !important;
    border-bottom: 1px solid rgba(218, 225, 236, 0.82);
    box-shadow: none !important;
    backdrop-filter: blur(18px) saturate(150%);
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.96) !important;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08) !important;
}

.site-header .nav-wrapper {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 34px;
    height: 82px;
}

.site-header .logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-width: max-content;
}

.brand-logo {
    display: block;
    width: auto;
    height: 54px;
    max-width: 190px;
    border-radius: 0;
    box-shadow: none;
    object-fit: contain;
}

.brand-copy {
    display: grid;
    line-height: 1.18;
}

.brand-copy strong {
    color: #101828;
    font-size: 19px;
    font-weight: 850;
    letter-spacing: -0.02em;
}

.brand-copy small {
    margin-top: 4px;
    color: #7a879c;
    font-size: 10px;
    font-weight: 650;
    letter-spacing: 0.08em;
}

.site-header .nav-wrapper nav {
    justify-self: end;
    margin: 0;
}

.site-header nav ul {
    gap: 2px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.site-header nav a {
    position: relative;
    min-height: 42px;
    padding: 0 11px;
    border-radius: 8px;
    color: #3d495e;
    font-size: 14px;
    font-weight: 680;
}

.site-header nav > ul > li > a::before {
    content: "";
    position: absolute;
    right: 12px;
    bottom: 4px;
    left: 12px;
    height: 2px;
    border-radius: 2px;
    background: #2563eb;
    opacity: 0;
    transform: scaleX(0.35);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-header nav > ul > li > a:hover,
.site-header .nav-dropdown:focus-within > a {
    background: #f3f6fb;
    color: #175cd3;
}

.site-header nav > ul > li > a:hover::before,
.site-header .nav-dropdown:focus-within > a::before {
    opacity: 1;
    transform: scaleX(1);
}

.site-header .nav-submenu {
    top: calc(100% + 12px);
    min-width: 210px;
    padding: 9px;
    border: 1px solid #e3e8f0;
    border-radius: 14px;
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.15);
}

.site-header .nav-submenu a {
    min-height: 40px;
    padding: 0 13px;
    border-radius: 9px;
    color: #46536a;
    font-weight: 620;
}

.site-header .nav-submenu a:hover {
    background: #eff5ff;
    color: #175cd3;
}

.site-header .header-btn {
    justify-self: end;
    gap: 9px;
    min-height: 46px;
    padding: 0 19px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    background: #101828;
    box-shadow: 0 9px 22px rgba(16, 24, 40, 0.18);
    color: #fff;
    font-size: 14px;
    font-weight: 750;
}

.site-header .header-btn:hover {
    background: #1d2939;
    box-shadow: 0 14px 30px rgba(16, 24, 40, 0.25);
    transform: translateY(-1px);
}

.site-header .header-btn i {
    font-size: 12px;
}

.mobile-nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid #dfe5ee;
    border-radius: 10px;
    background: #fff;
}

.mobile-nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 4px 0;
    border-radius: 2px;
    background: #101828;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hero */
.hero {
    min-height: 720px;
    padding: 104px 0 96px;
    isolation: isolate;
    background:
        radial-gradient(circle at 10% 15%, rgba(59, 130, 246, 0.22), transparent 30%),
        radial-gradient(circle at 88% 72%, rgba(124, 58, 237, 0.2), transparent 32%),
        linear-gradient(135deg, #06101e 0%, #0b1728 58%, #111a36 100%);
    color: #fff;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.17;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero .blob {
    filter: blur(110px);
    opacity: 0.28;
}

.hero .blob-1 { background: #2563eb; }
.hero .blob-2 { background: #7c3aed; }

.hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(470px, 0.92fr);
    gap: 56px;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 34px;
    padding: 5px 6px 5px 11px;
    border: 1px solid rgba(148, 197, 255, 0.26);
    border-radius: 999px;
    background: rgba(45, 113, 220, 0.12);
    color: #d9eaff;
    font-size: 13px;
    font-weight: 700;
}

.hero-eyebrow i { color: #60a5fa; }

.hero-eyebrow em {
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 11px;
    font-style: normal;
}

.hero-text h1 {
    margin: 24px 0 24px;
    color: #fff;
    font-size: clamp(46px, 4.5vw, 60px);
    font-weight: 880;
    letter-spacing: -0.055em;
    line-height: 1.09;
}

.mobile-break { display: none; }

.hero-text h1 span {
    background: linear-gradient(115deg, #ffffff 0%, #b9d8ff 48%, #b6a7ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text > p:not(.hero-price-note) {
    max-width: 640px;
    margin-bottom: 26px;
    color: #aebdd1;
    font-size: 17px;
    line-height: 1.85;
}

.hero-proof-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-bottom: 31px;
}

.hero-proof-list span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #dce7f6;
    font-size: 13px;
    font-weight: 650;
}

.hero-proof-list i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.16);
    color: #4ade80;
    font-size: 9px;
}

.hero-btns {
    gap: 12px;
}

.hero .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 52px;
    padding: 0 25px;
    border-radius: 10px;
    border: 1px solid transparent;
    font-size: 15px;
    font-weight: 740;
}

.hero .btn-primary {
    background: linear-gradient(135deg, #3478f6, #4f46e5);
    box-shadow: 0 14px 32px rgba(37, 99, 235, 0.34);
}

.hero .btn-primary:hover {
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.46);
}

.hero .btn-outline {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    backdrop-filter: blur(10px);
}

.hero .btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.hero .hero-price-note {
    margin: 18px 0 0;
    color: #8292a8;
    font-size: 12px;
}

.hero-price-note strong {
    color: #fff;
    font-size: 15px;
}

.hero-visual {
    padding: 34px 8px 34px 18px;
}

.mockup-card {
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 36px 100px rgba(0, 0, 0, 0.42);
    transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
}

.mockup-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 0 20px;
    border-bottom: 1px solid #e8edf4;
}

.mockup-brand,
.mockup-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #243147;
    font-size: 12px;
    font-weight: 750;
}

.mockup-brand img { border-radius: 8px; }

.mockup-status {
    color: #617088;
    font-weight: 600;
}

.mockup-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
}

.hero .code-block {
    margin: 16px;
    padding: 18px 20px 22px;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 14px;
    background: #0b1322;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    color: #8796ac;
    font-size: 12px;
    line-height: 1.8;
}

.code-caption {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
    color: #dbe7f6;
    font-size: 11px;
}

.code-caption em {
    color: #57708e;
    font-style: normal;
    letter-spacing: 0.1em;
}

.mockup-capabilities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    border-top: 1px solid #e8edf4;
    background: #e8edf4;
}

.mockup-capabilities > div {
    display: grid;
    grid-template-columns: 34px 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    padding: 17px 14px;
    background: #fff;
}

.mockup-capabilities i {
    grid-row: 1 / 3;
    width: 28px;
    color: #2563eb;
    font-size: 16px;
}

.mockup-capabilities span {
    color: #1f2a3d;
    font-size: 11px;
    font-weight: 750;
}

.mockup-capabilities small {
    color: #8491a5;
    font-size: 9px;
}

.stat-badge {
    padding: 13px 18px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 13px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.24);
    animation-duration: 5s;
}

.badge-1 { top: 0; right: -16px; }
.badge-2 { bottom: 1px; left: -12px; }

.stat-badge .icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 10px;
}

/* Trust metrics */
.trust-strip {
    position: relative;
    z-index: 3;
    border-bottom: 1px solid #e6ebf2;
    background: #fff;
}

.trust-strip .container {
    display: grid;
    grid-template-columns: 230px 1fr;
    align-items: stretch;
}

.trust-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 34px;
    border-right: 1px solid #e5eaf1;
}

.trust-intro span {
    color: #2563eb;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.trust-intro strong {
    margin-top: 5px;
    color: #172033;
    font-size: 17px;
}

.trust-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-metrics > div {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    min-height: 118px;
    padding: 22px 27px;
    border-right: 1px solid #e8edf3;
}

.trust-metrics > div:last-child { border-right: 0; }

.trust-metrics strong {
    grid-row: 1 / 3;
    margin-right: 13px;
    color: #175cd3;
    font-size: 31px;
    font-weight: 850;
    letter-spacing: -0.04em;
}

.trust-metrics sup { font-size: 14px; }

.trust-metrics span {
    align-self: end;
    color: #27354a;
    font-size: 13px;
    font-weight: 760;
}

.trust-metrics small {
    align-self: start;
    color: #8995a8;
    font-size: 10px;
}

/* Section rhythm */
.section {
    padding: 106px 0;
}

.section-header {
    max-width: 780px;
    margin: 0 auto 56px;
}

.section-header .subtitle {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    margin-bottom: 14px;
    padding: 0 10px;
    border: 1px solid #dce8fb;
    border-radius: 999px;
    background: #f2f7ff;
    color: #175cd3;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.12em;
}

.section-header h2 {
    margin-bottom: 16px;
    color: #101828;
    font-size: clamp(32px, 3.3vw, 44px);
    font-weight: 830;
    letter-spacing: -0.035em;
    line-height: 1.2;
}

.section-header p {
    color: #647187;
    font-size: 16px;
    line-height: 1.85;
}

#app-showcase,
#version-compare,
#delivery-scope,
#industry-scenes,
#assurance,
#features,
#resources {
    background: #f6f8fb !important;
}

/* Product suite */
.product-suite {
    background: #fff;
}

.product-suite-grid {
    gap: 18px;
}

.product-card {
    position: relative;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    box-shadow: 0 10px 32px rgba(15, 23, 42, 0.055);
    isolation: isolate;
}

.product-card::after {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: -1;
    border-radius: inherit;
    opacity: 0;
    background: linear-gradient(135deg, #3b82f6, #7c3aed);
    transition: opacity 0.25s ease;
}

.product-card:hover {
    border-color: transparent;
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.14);
    transform: translateY(-7px);
}

.product-card:hover::after { opacity: 1; }

.product-media {
    aspect-ratio: 1.16 / 1;
    padding: 22px;
    background:
        radial-gradient(circle at 50% 100%, rgba(99, 102, 241, 0.12), transparent 52%),
        linear-gradient(180deg, #f8faff, #eef3f9);
}

.product-media img {
    transition: transform 0.38s ease;
}

.product-card:hover .product-media img { transform: scale(1.035); }

.product-body {
    padding: 24px 22px 25px;
    background: #fff;
}

.product-kicker {
    color: #2563eb;
    font-size: 10px;
    letter-spacing: 0.11em;
}

.product-body h3 {
    color: #172033;
    font-size: 19px;
    letter-spacing: -0.015em;
}

.product-body p {
    color: #6e7b8f;
    line-height: 1.72;
}

.product-points span,
.tag {
    border: 1px solid #e4eaf2;
    border-radius: 999px;
    background: #f7f9fc;
    color: #56647a;
}

.product-link {
    color: #175cd3;
    font-size: 14px;
}

/* Unified content cards */
.decision-card,
.scene-card,
.service-card,
.article-card,
.resource-card,
.feature-box,
.advantage-card,
.assurance-item,
.industry-card,
.delivery-step,
.process-node {
    border-color: #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 8px 26px rgba(15, 23, 42, 0.045);
}

.decision-card:hover,
.scene-card:hover,
.service-card:hover,
.article-card:hover,
.resource-card:hover,
.feature-box:hover {
    border-color: #cbdcf8;
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.1);
    transform: translateY(-4px);
}

.decision-card strong,
.scene-card a,
.resource-card h3,
.article-card h3 {
    color: #175cd3;
}

.feature-icon,
.service-icon,
.scene-icon {
    border-radius: 14px;
    background: #eff5ff;
    color: #2563eb;
}

.app-carousel {
    isolation: isolate;
    gap: 20px;
}

.app-carousel::before {
    content: "";
    position: absolute;
    inset: 9% 5% 12%;
    z-index: -1;
    pointer-events: none;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 50%, rgba(96, 165, 250, 0.18), transparent 38%),
        radial-gradient(circle at 68% 48%, rgba(167, 139, 250, 0.2), transparent 42%);
    filter: blur(34px);
}

.app-carousel-window {
    padding: 34px 0 44px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}

.app-carousel-track {
    padding: 10px 2px 18px;
}

.app-slide {
    position: relative;
    z-index: 1;
    opacity: 0.54;
    filter: saturate(0.72) contrast(0.94);
    transform: perspective(1000px) scale(0.91) translateY(16px);
    transform-origin: 50% 58%;
    transition:
        opacity 0.42s ease,
        filter 0.42s ease,
        transform 0.52s cubic-bezier(0.2, 0.78, 0.22, 1);
}

.app-slide.is-before { transform: perspective(1000px) rotateY(3deg) scale(0.91) translateY(16px); }
.app-slide.is-after { transform: perspective(1000px) rotateY(-3deg) scale(0.91) translateY(16px); }

.app-slide.is-near {
    z-index: 2;
    opacity: 0.84;
    filter: saturate(0.92);
    transform: perspective(1000px) scale(0.965) translateY(5px);
}

.app-slide.is-active {
    z-index: 4;
    opacity: 1;
    filter: saturate(1.05) contrast(1.02);
    transform: perspective(1000px) scale(1.035) translateY(-8px);
}

.phone-shot {
    position: relative;
    border: 7px solid #151d2c;
    border-radius: 34px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.18);
    transition: border-color 0.42s ease, box-shadow 0.42s ease;
}

.phone-shot::before {
    content: "";
    position: absolute;
    inset: -2px;
    z-index: 2;
    pointer-events: none;
    border-radius: inherit;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.phone-shot::after {
    content: "";
    position: absolute;
    top: -30%;
    bottom: -30%;
    left: -62%;
    z-index: 3;
    width: 32%;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
    opacity: 0;
    transform: skewX(-16deg);
}

.app-slide.is-active .phone-shot {
    border-color: #111a2c;
    box-shadow:
        0 32px 72px rgba(38, 55, 92, 0.24),
        0 0 0 1px rgba(99, 102, 241, 0.18),
        0 0 34px rgba(99, 102, 241, 0.16);
}

.app-slide.is-active .phone-shot::after {
    animation: app-phone-shine 3.8s ease-in-out infinite 0.45s;
}

.app-slide .phone-shot img {
    transition: transform 0.55s cubic-bezier(0.2, 0.78, 0.22, 1);
}

.app-slide.is-active .phone-shot img { transform: scale(1.012); }

.app-slide figcaption {
    transition: color 0.35s ease, transform 0.35s ease;
}

.app-slide.is-active figcaption {
    color: #172554;
    transform: translateY(4px);
}

.app-slide--v6max figcaption::before {
    content: "主推";
    display: inline-flex;
    margin-right: 7px;
    padding: 3px 7px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #fff;
    font-size: 8px;
    font-weight: 850;
    letter-spacing: 0.08em;
    vertical-align: 2px;
}

@keyframes app-phone-shine {
    0%, 18% { left: -62%; opacity: 0; }
    30% { opacity: 0.8; }
    52% { left: 128%; opacity: 0; }
    100% { left: 128%; opacity: 0; }
}

.carousel-btn {
    width: 46px;
    height: 58px;
    border: 1px solid #dfe6f0;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.09);
    color: #334155;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.carousel-btn:hover {
    border-color: rgba(99, 102, 241, 0.42);
    background: linear-gradient(135deg, #2563eb, #6d4aff);
    box-shadow: 0 15px 34px rgba(79, 70, 229, 0.24);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
}

.compare-panel {
    overflow: hidden;
    border: 1px solid #e0e6ef;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07);
}

.compare-head {
    background: #101828;
    color: #fff;
}

.service-band {
    background:
        radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.2), transparent 28%),
        linear-gradient(135deg, #0a1424, #111d34);
}

.service-band .section-header h2,
.service-band .section-header p { color: #fff; }
.service-band .section-header p { opacity: 0.7; }

.technical-advantages {
    background: #fff;
}

.advantage-card {
    min-height: 182px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.065);
}

.advantage-icon {
    border-radius: 17px;
}

.tech-section {
    position: relative;
    overflow: hidden;
    padding: 92px 0 84px;
    text-align: center;
    background:
        radial-gradient(circle at 12% 18%, rgba(37, 99, 235, 0.18), transparent 28%),
        radial-gradient(circle at 86% 20%, rgba(124, 58, 237, 0.18), transparent 30%),
        linear-gradient(135deg, #07111f 0%, #0b172a 56%, #151d46 100%);
}

.tech-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.24;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 82%);
}

.tech-section .container {
    position: relative;
    z-index: 1;
}

.tech-heading {
    max-width: 720px;
    margin: 0 auto;
}

.tech-heading > span {
    display: inline-flex;
    padding: 6px 11px;
    border: 1px solid rgba(125, 211, 252, 0.24);
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.12);
    color: #93c5fd;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.15em;
}

.tech-heading h2 {
    margin: 16px 0 10px;
    color: #fff;
    font-size: clamp(32px, 3.4vw, 43px);
    font-weight: 830;
    letter-spacing: -0.04em;
    line-height: 1.2;
}

.tech-heading p {
    margin: 0;
    color: #91a0b5;
    font-size: 15px;
    line-height: 1.8;
}

.tech-icons {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
    margin-top: 44px;
    opacity: 1;
}

.tech-item {
    --tech-accent: #60a5fa;
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 178px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 23px 12px 20px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.17);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(96, 165, 250, 0.035));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.09),
        0 16px 38px rgba(0, 0, 0, 0.15);
    font-size: inherit;
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.tech-item:nth-child(2),
.tech-item:nth-child(5) { --tech-accent: #a78bfa; }

.tech-item:nth-child(3),
.tech-item:nth-child(6) { --tech-accent: #67e8f9; }

.tech-item::before {
    content: "";
    position: absolute;
    top: 0;
    right: 18%;
    left: 18%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--tech-accent), transparent);
    opacity: 0.58;
}

.tech-item:hover {
    border-color: color-mix(in srgb, var(--tech-accent) 42%, transparent);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(96, 165, 250, 0.065));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.13),
        0 22px 48px rgba(0, 0, 0, 0.22),
        0 0 28px color-mix(in srgb, var(--tech-accent) 12%, transparent);
    transform: translateY(-5px);
}

.tech-icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 15px;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--tech-accent) 28%, transparent);
    border-radius: 16px;
    background: color-mix(in srgb, var(--tech-accent) 10%, rgba(255, 255, 255, 0.035));
    color: var(--tech-accent);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.tech-item .tech-icon i {
    font-size: 27px;
    line-height: 1;
}

.tech-item strong {
    color: #f8fafc;
    font-size: 16px;
    font-weight: 780;
    letter-spacing: -0.015em;
}

.tech-item > span {
    margin-top: 5px;
    color: #8493a9;
    font-size: 10px;
    line-height: 1.45;
}

.tech-assurance {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 30px;
    color: #8999ae;
    font-size: 11px;
}

.tech-assurance span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.tech-assurance i {
    display: grid;
    width: 18px;
    height: 18px;
    place-items: center;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.12);
    color: #6ee7b7;
    font-size: 8px;
}

/* Pricing section */
.pricing-overview {
    background:
        radial-gradient(circle at 80% 0%, rgba(99, 102, 241, 0.28), transparent 36%),
        linear-gradient(145deg, #07111f 0%, #0d1930 56%, #172554 100%);
}

.pricing-item {
    border-color: rgba(255, 255, 255, 0.13);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.065);
    backdrop-filter: blur(10px);
}

.pricing-item.featured {
    border-color: rgba(96, 165, 250, 0.5);
    background: rgba(37, 99, 235, 0.16);
}

.pricing-summary {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
}

.pricing-actions .btn-primary {
    background: #fff;
    color: #101828;
}

.pricing-actions .btn-outline {
    border-color: rgba(255, 255, 255, 0.26);
    background: transparent;
    color: #fff;
}

.pricing-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 16px;
    margin-top: 16px;
}

.pricing-detail-card {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.065);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.pricing-detail-heading > span {
    display: block;
    margin-bottom: 7px;
    color: #93c5fd;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.14em;
}

.pricing-detail-heading h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(21px, 2vw, 28px);
    font-weight: 820;
    letter-spacing: -0.025em;
}

.pricing-detail-heading p {
    margin: 8px 0 0;
    color: rgba(226, 232, 240, 0.68);
    font-size: 12px;
    line-height: 1.7;
}

.payment-stage-list {
    display: grid;
    gap: 0;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.payment-stage-list li {
    position: relative;
    display: grid;
    grid-template-columns: 39px 1fr;
    gap: 14px;
    padding: 0 0 20px;
}

.payment-stage-list li:last-child { padding-bottom: 0; }

.payment-stage-list li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 35px;
    bottom: 2px;
    left: 18px;
    width: 1px;
    background: linear-gradient(180deg, rgba(96, 165, 250, 0.54), rgba(167, 139, 250, 0.16));
}

.payment-stage-list b {
    display: grid;
    width: 37px;
    height: 37px;
    place-items: center;
    border: 1px solid rgba(125, 211, 252, 0.28);
    border-radius: 11px;
    background: linear-gradient(145deg, rgba(37, 99, 235, 0.36), rgba(124, 58, 237, 0.24));
    color: #bfdbfe;
    font-size: 10px;
    letter-spacing: 0.05em;
}

.payment-stage-list strong,
.payment-stage-list span {
    display: block;
}

.payment-stage-list strong {
    color: #fff;
    font-size: 15px;
    font-weight: 760;
}

.payment-stage-list span {
    margin-top: 4px;
    color: rgba(203, 213, 225, 0.7);
    font-size: 11px;
    line-height: 1.65;
}

.pricing-scope-card {
    background:
        radial-gradient(circle at 92% 4%, rgba(99, 102, 241, 0.16), transparent 34%),
        rgba(255, 255, 255, 0.07);
}

.pricing-quick-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 20px;
}

.pricing-quick-facts > div {
    min-width: 0;
    padding: 13px 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.055);
    text-align: center;
}

.pricing-quick-facts strong,
.pricing-quick-facts span {
    display: block;
}

.pricing-quick-facts strong {
    color: #fff;
    font-size: 15px;
    font-weight: 800;
}

.pricing-quick-facts span {
    margin-top: 3px;
    color: rgba(203, 213, 225, 0.64);
    font-size: 9px;
    line-height: 1.4;
}

.pricing-scope-list {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.pricing-scope-list > div {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 13px;
    background: rgba(4, 12, 27, 0.22);
}

.pricing-scope-list i {
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    border-radius: 9px;
    background: rgba(96, 165, 250, 0.12);
    color: #93c5fd;
    font-size: 12px;
}

.pricing-scope-list .is-included i {
    background: rgba(34, 197, 94, 0.13);
    color: #86efac;
}

.pricing-scope-list .is-excluded i {
    background: rgba(251, 191, 36, 0.13);
    color: #fde68a;
}

.pricing-scope-list p { margin: 0; }

.pricing-scope-list strong,
.pricing-scope-list span { display: block; }

.pricing-scope-list strong {
    color: #f8fafc;
    font-size: 13px;
}

.pricing-scope-list span {
    margin-top: 2px;
    color: rgba(203, 213, 225, 0.66);
    font-size: 10px;
    line-height: 1.55;
}

.pricing-scope-note {
    margin: 14px 2px 0;
    color: rgba(148, 163, 184, 0.72);
    font-size: 9px;
    line-height: 1.6;
}

/* Product story gallery */
.solution-gallery {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 6% 4%, rgba(186, 230, 253, 0.42), transparent 28%),
        radial-gradient(circle at 94% 90%, rgba(221, 214, 254, 0.48), transparent 30%),
        linear-gradient(180deg, #f8fbff 0%, #f3f6fc 100%) !important;
}

.solution-gallery::before {
    content: "";
    position: absolute;
    top: 90px;
    left: 50%;
    width: min(90vw, 1180px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.22), transparent);
    transform: translateX(-50%);
}

.solution-gallery-header {
    max-width: 820px;
}

.solution-panorama-card {
    display: grid;
    grid-template-columns: minmax(330px, 0.76fr) minmax(0, 1.24fr);
    min-height: 430px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid rgba(122, 148, 190, 0.26);
    border-radius: 24px;
    background:
        radial-gradient(circle at 12% 12%, rgba(37, 99, 235, 0.2), transparent 34%),
        linear-gradient(135deg, #07111f 0%, #0b1930 62%, #111f3e 100%);
    box-shadow: 0 26px 72px rgba(15, 23, 42, 0.2);
}

.solution-panorama-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 46px 42px;
}

.solution-panorama-content .solution-visual-index { color: #91a4bf; }

.solution-panorama-content .solution-visual-index span {
    border-color: rgba(125, 211, 252, 0.24);
    background: rgba(30, 64, 175, 0.24);
    color: #7dd3fc;
}

.solution-panorama-content h3 {
    margin: 0 0 15px;
    color: #fff;
    font-size: clamp(28px, 2.6vw, 38px);
    font-weight: 830;
    letter-spacing: -0.04em;
    line-height: 1.24;
}

.solution-panorama-content p {
    margin: 0;
    color: #9dafc7;
    font-size: 14px;
    line-height: 1.85;
}

.solution-panorama-content .solution-visual-tags span {
    border-color: rgba(148, 163, 184, 0.22);
    background: rgba(255, 255, 255, 0.07);
    color: #cbd8e9;
}

.solution-panorama-media {
    position: relative;
    min-width: 0;
    overflow: hidden;
    margin: 0;
}

.solution-panorama-media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg, #0b1930 0%, transparent 24%);
}

.solution-panorama-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-gallery-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.solution-visual-card {
    position: relative;
    display: grid;
    grid-template-columns: 47% 1fr;
    min-height: 310px;
    overflow: hidden;
    border: 1px solid rgba(194, 209, 229, 0.78);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.94),
        0 22px 60px rgba(39, 64, 102, 0.1);
    backdrop-filter: blur(22px) saturate(135%);
    -webkit-backdrop-filter: blur(22px) saturate(135%);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.solution-visual-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.52), transparent 46%);
}

.solution-visual-card:hover {
    border-color: rgba(133, 161, 204, 0.8);
    box-shadow: 0 30px 72px rgba(39, 64, 102, 0.15);
    transform: translateY(-5px);
}

.solution-visual-card--large {
    grid-row: 1 / 3;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
    min-height: 640px;
}

.solution-visual-media {
    position: relative;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    margin: 0;
    background: rgba(231, 238, 250, 0.68);
}

.solution-visual-media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.75);
}

.solution-visual-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.solution-visual-card:hover .solution-visual-media img { transform: scale(1.025); }

.solution-visual-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 28px 27px;
}

.solution-visual-index {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 13px;
    color: #61718a;
    font-size: 9px;
    font-weight: 820;
    letter-spacing: 0.13em;
}

.solution-visual-index span {
    display: grid;
    width: 27px;
    height: 27px;
    place-items: center;
    border: 1px solid rgba(96, 165, 250, 0.34);
    border-radius: 9px;
    background: rgba(239, 246, 255, 0.8);
    color: #2563eb;
    letter-spacing: 0;
}

.solution-visual-content h3 {
    margin: 0 0 11px;
    color: #101828;
    font-size: clamp(19px, 1.8vw, 25px);
    font-weight: 820;
    letter-spacing: -0.025em;
    line-height: 1.35;
}

.solution-visual-content p {
    margin: 0;
    color: #65738a;
    font-size: 13px;
    line-height: 1.75;
}

.solution-visual-card--large .solution-visual-content { padding: 30px 32px 34px; }
.solution-visual-card--large .solution-visual-content h3 { font-size: clamp(24px, 2.2vw, 31px); }

.solution-visual-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 19px;
}

.solution-visual-tags span {
    padding: 6px 10px;
    border: 1px solid rgba(195, 211, 232, 0.8);
    border-radius: 999px;
    background: rgba(247, 250, 255, 0.78);
    color: #52627a;
    font-size: 10px;
    font-weight: 720;
}

/* Translucent pastel card system */
#products,
#version-guide,
#scene-solutions,
#source-code,
#technical-advantages,
#articles {
    background:
        radial-gradient(circle at 8% 14%, rgba(191, 219, 254, 0.28), transparent 26%),
        radial-gradient(circle at 92% 78%, rgba(221, 214, 254, 0.25), transparent 28%),
        #ffffff !important;
}

#app-showcase,
#version-compare,
#delivery-scope,
#industry-scenes,
#assurance,
#features,
#resources {
    background:
        radial-gradient(circle at 12% 16%, rgba(207, 250, 254, 0.28), transparent 24%),
        radial-gradient(circle at 88% 82%, rgba(224, 231, 255, 0.36), transparent 28%),
        #f6f8fb !important;
}

.product-card,
.decision-card,
.scene-card,
.article-card,
.resource-card,
.feature-box,
.advantage-card,
.assurance-item,
.industry-card,
.delivery-step {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(202, 215, 232, 0.72);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(242, 247, 255, 0.66));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 12px 34px rgba(40, 67, 105, 0.07);
    backdrop-filter: blur(18px) saturate(135%);
    -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.product-card::before,
.decision-card::before,
.scene-card::before,
.article-card::before,
.resource-card::before,
.feature-box::before,
.advantage-card::before,
.assurance-item::before,
.industry-card::before,
.delivery-step::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.46), transparent 42%);
    pointer-events: none;
}

.product-card:nth-child(4n + 1),
.decision-card:nth-child(4n + 1),
.scene-card:nth-child(4n + 1),
.article-card:nth-child(4n + 1),
.resource-card:nth-child(4n + 1),
.feature-box:nth-child(4n + 1),
.advantage-card:nth-child(4n + 1),
.industry-card:nth-child(4n + 1),
.delivery-step:nth-child(4n + 1) {
    background: linear-gradient(145deg, rgba(239, 246, 255, 0.9), rgba(219, 234, 254, 0.56));
}

.product-card:nth-child(4n + 2),
.decision-card:nth-child(4n + 2),
.scene-card:nth-child(4n + 2),
.article-card:nth-child(4n + 2),
.resource-card:nth-child(4n + 2),
.feature-box:nth-child(4n + 2),
.advantage-card:nth-child(4n + 2),
.industry-card:nth-child(4n + 2),
.delivery-step:nth-child(4n + 2) {
    background: linear-gradient(145deg, rgba(245, 243, 255, 0.9), rgba(237, 233, 254, 0.58));
}

.product-card:nth-child(4n + 3),
.decision-card:nth-child(4n + 3),
.scene-card:nth-child(4n + 3),
.article-card:nth-child(4n + 3),
.resource-card:nth-child(4n + 3),
.feature-box:nth-child(4n + 3),
.advantage-card:nth-child(4n + 3),
.industry-card:nth-child(4n + 3),
.delivery-step:nth-child(4n + 3) {
    background: linear-gradient(145deg, rgba(236, 254, 255, 0.88), rgba(207, 250, 254, 0.52));
}

.product-card:nth-child(4n),
.decision-card:nth-child(4n),
.scene-card:nth-child(4n),
.article-card:nth-child(4n),
.resource-card:nth-child(4n),
.feature-box:nth-child(4n),
.advantage-card:nth-child(4n),
.industry-card:nth-child(4n),
.delivery-step:nth-child(4n) {
    background: linear-gradient(145deg, rgba(255, 247, 237, 0.9), rgba(254, 242, 242, 0.58));
}

.product-card .product-body {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.product-card .product-media {
    background:
        radial-gradient(circle at 50% 100%, rgba(99, 102, 241, 0.14), transparent 52%),
        rgba(245, 248, 253, 0.62);
}

.product-points span,
.tag {
    border-color: rgba(188, 204, 225, 0.7);
    background: rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(8px);
}

.product-card:hover,
.decision-card:hover,
.scene-card:hover,
.article-card:hover,
.resource-card:hover,
.feature-box:hover,
.advantage-card:hover,
.industry-card:hover,
.delivery-step:hover {
    border-color: rgba(124, 160, 211, 0.72);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.96),
        0 24px 54px rgba(40, 67, 105, 0.13);
}

.service-band .service-card {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(173, 205, 255, 0.07));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 18px 45px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(18px) saturate(125%);
    -webkit-backdrop-filter: blur(18px) saturate(125%);
}

.process-node {
    border-color: rgba(202, 215, 232, 0.76);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(237, 244, 255, 0.66));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 12px 30px rgba(40, 67, 105, 0.07);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.tech-item {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(96, 165, 250, 0.06));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

/* Footer */
footer {
    margin-top: 0;
    padding: 82px 0 30px;
    border-top: 0;
    background: #07111f;
    color: #d7e0ec;
}

.footer-info h3 {
    background: linear-gradient(120deg, #fff, #8ebcff);
    -webkit-background-clip: text;
    background-clip: text;
}

.footer-info p,
.footer-links a,
.footer-links li {
    color: #8e9db1;
}

.footer-contact-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.footer-contact-badges span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: #aab7c8;
    font-size: 11px;
}

.footer-contact-badges i { color: #60a5fa; }

.footer-col h4 {
    color: #fff;
    font-size: 15px;
}

.footer-links a:hover {
    color: #80b4ff;
}

.copyright {
    border-top-color: rgba(255, 255, 255, 0.1);
    color: #68768a;
}

/* Responsive navigation and layout */
@media (max-width: 1120px) {
    .site-header .nav-wrapper {
        display: grid;
        grid-template-columns: 1fr auto auto;
        height: 74px;
    }

    .mobile-nav-toggle {
        display: block;
        justify-self: end;
    }

    .site-header .nav-wrapper nav {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        left: 0;
        width: 100%;
        padding: 10px;
        border: 1px solid #dfe6ef;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
        max-height: calc(100vh - 102px);
        overflow-y: auto;
    }

    .site-header.nav-open .nav-wrapper nav { display: block; }

    .site-header nav ul {
        display: grid;
        gap: 3px;
        align-items: stretch;
    }

    .site-header nav a {
        display: flex;
        width: 100%;
        min-height: 44px;
        justify-content: space-between;
        padding: 0 13px;
    }

    .site-header .nav-dropdown::after { display: none; }

    .site-header .nav-submenu {
        position: static;
        display: grid;
        width: 100%;
        min-width: 0;
        margin: 2px 0 8px;
        padding: 6px;
        border: 0;
        border-radius: 10px;
        background: #f4f7fb;
        box-shadow: none;
        opacity: 1;
        transform: none;
        visibility: visible;
    }

    .hero-grid {
        grid-template-columns: 1fr 0.86fr;
        gap: 42px;
    }

    .hero-text h1 { font-size: clamp(44px, 5.2vw, 58px); }

    .trust-strip .container { grid-template-columns: 1fr; }
    .trust-intro { display: none; }

    .tech-icons { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
    .container { width: min(100% - 36px, var(--container-width)); }

    .site-header .header-btn { display: none; }
    .site-header .nav-wrapper { grid-template-columns: 1fr auto; }

    .hero {
        min-height: auto;
        padding: 86px 0 74px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .hero-text > p:not(.hero-price-note) { margin: 0 0 24px; }
    .hero-btns { justify-content: flex-start; }
    .hero-visual { display: block; max-width: 660px; margin: 10px auto 0; }
    .hero .stat-badge { display: none; }

    .trust-metrics { grid-template-columns: repeat(2, 1fr); }
    .trust-metrics > div:nth-child(2) { border-right: 0; }
    .trust-metrics > div:nth-child(-n+2) { border-bottom: 1px solid #e8edf3; }

    .section { padding: 82px 0; }
    .section-header { margin-bottom: 44px; }
    .compare-panel { overflow-x: auto; }

    .pricing-detail-grid { grid-template-columns: 1fr; }

    .solution-gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .solution-visual-card--large {
        grid-row: auto;
        min-height: 620px;
    }
}

@media (max-width: 640px) {
    .container { width: min(100% - 28px, var(--container-width)); }

    .brand-logo { width: auto; height: 44px; max-width: 142px; }
    .brand-copy strong { font-size: 17px; }
    .brand-copy small { font-size: 9px; }

    .hero {
        padding: 68px 0 56px;
    }

    .hero::before { background-size: 34px 34px; }

    .hero-eyebrow em { display: none; }
    .hero-text h1 {
        margin-top: 19px;
        font-size: clamp(38px, 11.5vw, 50px);
        letter-spacing: -0.06em;
    }

    .mobile-break { display: inline; }

    .hero-text > p:not(.hero-price-note) {
        font-size: 15px;
        line-height: 1.75;
    }

    .hero-proof-list { display: grid; grid-template-columns: 1fr 1fr; }
    .hero-btns { display: grid; grid-template-columns: 1fr; }
    .hero .btn { width: 100%; }

    .hero-visual { padding: 18px 0 0; }
    .mockup-card { transform: none; border-radius: 16px; }
    .hero .code-block { margin: 10px; padding: 14px; font-size: 9px; overflow: hidden; }
    .mockup-toolbar { min-height: 52px; padding: 0 14px; }
    .mockup-status { display: none; }
    .mockup-capabilities { grid-template-columns: 1fr; }
    .mockup-capabilities > div { padding: 13px 15px; }

    .trust-metrics > div {
        min-height: 94px;
        padding: 17px 12px;
    }

    .trust-metrics strong { font-size: 25px; }
    .trust-metrics span { font-size: 11px; }

    .section { padding: 68px 0; }
    .section-header h2 { font-size: 31px; }
    .section-header p { font-size: 14px; }
    .product-body { padding: 22px 20px; }
    .pricing-actions .btn { width: 100%; text-align: center; }
    .pricing-detail-card { padding: 23px 19px; }
    .pricing-quick-facts { gap: 6px; }
    .pricing-quick-facts > div { padding: 11px 6px; }

    .solution-visual-card,
    .solution-visual-card--large {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        min-height: 0;
        border-radius: 18px;
    }

    .solution-visual-media { aspect-ratio: 3 / 2; }
    .solution-visual-content,
    .solution-visual-card--large .solution-visual-content { padding: 24px 21px 26px; }
    .solution-visual-card--large .solution-visual-content h3 { font-size: 24px; }
    .solution-visual-tags { margin-top: 15px; }

    .solution-panorama-card {
        grid-template-columns: 1fr;
        min-height: 0;
        border-radius: 18px;
    }

    .solution-panorama-content { padding: 30px 22px; }
    .solution-panorama-content h3 { font-size: 27px; }
    .solution-panorama-media { aspect-ratio: 3 / 2; }
    .solution-panorama-media::before { background: linear-gradient(180deg, #0b1930 0%, transparent 22%); }

    .tech-section { padding: 70px 0 64px; }
    .tech-section .container { width: min(calc(100% - 28px), var(--container-width)); }
    .tech-heading,
    .tech-heading p { width: 100%; max-width: 100%; }
    .tech-heading p { font-size: 13px; }
    .tech-icons { width: 100%; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; margin-top: 34px; }
    .tech-item { width: 100%; min-width: 0; min-height: 154px; padding: 19px 8px 17px; border-radius: 15px; }
    .tech-icon { width: 50px; height: 50px; margin-bottom: 12px; border-radius: 14px; }
    .tech-item .tech-icon i { font-size: 23px; }
    .tech-assurance { display: grid; grid-template-columns: 1fr; justify-items: center; gap: 9px; margin-top: 24px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
