﻿/* ===================================================
   TOTEM DESIGN SYSTEM v2.0
   Primary: #E55A2C  |  Dark: #0F172A
   Fonts: Noto Sans SC (思源黑体) — Local Hosting
   =================================================== */

/* ===== 0. LOCAL FONT DECLARATIONS ===== */
@import url('noto-sans-sc-local.css');

/* ===== 1. RESET & VARIABLES ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary */
    --primary: #E55A2C;
    --primary-dark: #C7431C;
    --primary-light: #FEF1EA;
    --primary-hover: #D04E24;

    /* Neutral */
    --dark: #0F172A;
    --dark-secondary: #1E293B;
    --gray-900: #1a1a2e;
    --gray-700: #374151;
    --gray-600: #475569;
    --gray-500: #64748b;
    --gray-400: #94a3b8;
    --gray-300: #cbd5e1;
    --gray-200: #e2e8f0;
    --gray-100: #F8FAFE;
    --gray-50: #f8fafc;
    --white: #ffffff;

    /* Semantic */
    --success: #10b981;
    --warning: #f59e0b;
    --info: #3b82f6;

    /* Shadows */
    --shadow-xs: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 10px 25px -5px rgba(0, 0, 0, 0.05),
                 0 8px 10px -6px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 20px 25px -12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.15);

    /* Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1.25rem;
    --radius-xl: 2rem;
    --radius-full: 50px;

    /* Transitions */
    --ease-fast: 0.15s ease;
    --ease-base: 0.25s ease;
    --ease-slow: 0.4s ease;

    /* Layout */
    --container-max: 1280px;
    --container-pad: 32px;
    --section-pad: 80px;
}

/* ===== 2. BASE ===== */
body {
    font-family: 'Noto Sans SC', sans-serif;
    background-color: var(--white);
    color: #141414;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ===== 3. TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
}

.text-muted {
    color: var(--gray-600);
}

.text-primary {
    color: var(--primary);
}

.text-center {
    text-align: center;
}

/* ===== 4. BUTTONS ===== */
.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background var(--ease-base), transform var(--ease-base);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    padding: 10px 26px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background var(--ease-base), color var(--ease-base);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-dark {
    background-color: var(--dark);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background var(--ease-base), transform var(--ease-base);
}

.btn-dark:hover {
    background-color: var(--dark-secondary);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.link-arrow {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--ease-base);
}

.link-arrow:hover {
    gap: 10px;
}

/* ===== 5. NAVBAR ===== */
/* ===== 5. NAVBAR — Floating Pill Style ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3000;
    padding: 16px 16px 8px;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
    pointer-events: none;
}

.navbar > * {
    pointer-events: auto;
}

.navbar.scrolled {
    padding: 10px 16px 8px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 24px 0 32px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 36px -8px rgba(229, 90, 44, 0.15),
                0 3px 10px -2px rgba(15, 23, 42, 0.05);
    transition: all 0.3s ease;
    pointer-events: auto;
}

.navbar.scrolled .nav-container {
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 14px 44px -8px rgba(229, 90, 44, 0.22),
                0 4px 14px -2px rgba(15, 23, 42, 0.08);
    border-color: rgba(255, 255, 255, 0.6);
}

/* 首屏 hero 延伸到顶部，让背景穿透导航栏 */
body > main > section:first-child,
body > section:first-child,
.home-hero,
.sol-page-hero,
.sol-hero,
.page-hero,
.sub-product-hero {
    padding-top: 120px !important;
}

.logo {
    font-size: 1.9rem;
    font-weight: 900;
    background: linear-gradient(135deg, #E55A2C, #B43A12);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    letter-spacing: -0.03em;
    transition: transform var(--ease-base);
    flex-shrink: 0;
    overflow: hidden;
    min-width: 0;
}

.logo img {
    max-width: 100%;
    height: auto;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 0;
    align-items: center;
    margin-left: 2.5rem;
}

.nav-links a {
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    transition: all var(--ease-base);
    text-decoration: none;
    color: #0a0a0a;
    padding: 10px 18px;
    border-radius: 10px;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.nav-item {
    position: relative;
    display: inline-block;
}

.dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: rgba(255, 255, 255, 0.82);
     backdrop-filter: blur(24px) saturate(180%);
     -webkit-backdrop-filter: blur(24px) saturate(180%);
    min-width: 240px;
    border-radius: 14px;
    box-shadow: 0 16px 48px -8px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(0, 0, 0, 0.04);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 3100;
}

.dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.82);
     backdrop-filter: blur(24px) saturate(180%);
     -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.03);
}

.dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.65rem 1rem;
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 10px;
    transition: all var(--ease-fast);
}

.dropdown a:hover {
    background: var(--primary-light);
    color: var(--primary);
    padding-left: 1.2rem;
}

.dropdown a i {
    font-size: 0.9rem;
    width: 20px;
    text-align: center;
    color: var(--primary);
    opacity: 0.7;
}

.dropdown a:hover i {
    opacity: 1;
}

.nav-item.has-dropdown:hover .dropdown,
.nav-item.has-dropdown:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-item.has-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.nav-item.has-dropdown > a i {
    transition: transform var(--ease-base), color var(--ease-base);
    font-size: 0.55rem;
    opacity: 0.4;
}

.nav-item.has-dropdown:hover > a i,
.nav-item.has-dropdown:focus-within > a i {
    transform: rotate(180deg);
    opacity: 1;
    color: var(--primary);
}

/* ===== MEGA MENU ===== */
.nav-item.has-mega {
    position: static;
}

.nav-item.has-mega > a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    position: relative;
}

.nav-item.has-mega > a i {
    transition: transform var(--ease-base), color var(--ease-base);
    font-size: 0.55rem;
    opacity: 0.4;
}

.nav-item.has-mega:hover > a i,
.nav-item.has-mega:focus-within > a i {
    transform: rotate(180deg);
    opacity: 1;
    color: var(--primary);
}

/* 核心导航项橙色指示条 */
.nav-item.highlight-nav > a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.nav-item.highlight-nav:hover > a::after,
.nav-item.highlight-nav:focus-within > a::after {
    opacity: 1;
}

.mega-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: rgba(255, 255, 255, 0.82);
     backdrop-filter: blur(24px) saturate(180%);
     -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-radius: 16px;
    box-shadow: 0 20px 60px -12px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(0, 0, 0, 0.04);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 3100;
    overflow: hidden;
}

.mega-menu-products {
    width: min(860px, calc(100vw - 48px));
}

.mega-menu-products .mega-sections {
    grid-template-columns: repeat(3, 1fr);
}


.mega-menu-solutions {
    width: min(860px, calc(100vw - 48px));
}

.nav-item.has-mega:hover .mega-menu,
.nav-item.has-mega:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* 顶部标题条 */
.mega-header {
    display: flex;
    align-items: center;
    padding: 0.85rem 1.5rem;
    border-bottom: 1px solid var(--gray-100);
}

.mega-header-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
}

.mega-header-title {
    font-weight: 800;
    font-size: 0.88rem;
    color: var(--dark);
}

.mega-header-link {
    margin-left: auto;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}

.mega-header-link:hover {
    gap: 10px;
}

.mega-header-link i {
    font-size: 0.75rem;
}

/* 主体 */
.mega-body {
    padding: 1rem 1.5rem 1.25rem;
}

.mega-sections {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;
}

/* 分类卡片容器 */
.mega-section {
    background: rgba(249, 250, 251, 0.75);
     backdrop-filter: blur(8px);
     -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 1rem;
}

.mega-section-full {
    margin-top: 0.75rem;
}

.mega-section-title {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 0.6rem 0;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--primary-light);
}

.mega-section a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.45rem 0.5rem;
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: 6px;
    transition: all 0.15s ease;
    text-decoration: none;
}

.mega-section a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.mega-section a i {
    font-size: 0.85rem;
    width: 18px;
    text-align: center;
    color: var(--gray-400);
    transition: color 0.15s ease;
    flex-shrink: 0;
}

.mega-section a:hover i {
    color: var(--primary);
}

.mega-tag {
    display: inline-block;
    margin-left: 8px;
    padding: 1px 7px;
    font-size: 0.65rem;
    font-weight: 800;
    border-radius: 50px;
    line-height: 1.4;
}

.mega-tag-new {
    background: #d1fae5;
    color: #047857;
}

.mega-tag-hot {
    background: var(--primary-light);
    color: var(--primary);
}

.mega-view-all {
    padding: 0.65rem 1.5rem;
    border-top: 1px solid var(--gray-100);
}

.mega-view-all a {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
}

.mega-view-all a:hover {
    text-decoration: underline;
}

.mega-menu-apple {
    width: min(840px, calc(100vw - 48px));
    padding: 0;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.985);
    border: 1px solid rgba(229, 231, 235, 0.72);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.1);
    backdrop-filter: blur(8px) saturate(115%);
    -webkit-backdrop-filter: blur(8px) saturate(115%);
}

.apple-menu-inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
    padding: 28px 34px 32px;
}

.apple-menu-label {
    min-height: 18px;
    margin: 0 0 12px;
    color: var(--gray-400);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.apple-menu-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.apple-menu-column a {
    color: var(--gray-700);
    font-size: 0.96rem;
    font-weight: 700;
    line-height: 1.32;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.apple-menu-column a:hover {
    color: var(--primary);
    transform: translateX(2px);
}

.apple-menu-primary .apple-menu-main {
    color: var(--gray-700);
    font-size: 0.96rem;
    font-weight: 700;
    letter-spacing: 0;
}

.mega-menu-capsule {
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 18px 44px -28px rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(14px) saturate(120%);
    -webkit-backdrop-filter: blur(14px) saturate(120%);
}

.nav-mega-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
    padding: 2px 4px 2px 8px;
}

.nav-mega-head span {
    color: var(--dark);
    font-size: 0.86rem;
    font-weight: 900;
}

.nav-mega-head a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: var(--radius-full);
    background: #fff7f3;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 800;
    white-space: nowrap;
}

.nav-mega-head a:hover {
    background: var(--primary);
    color: var(--white);
}

.nav-mega-grid {
    display: grid;
    gap: 8px;
}

.nav-mega-products {
    grid-template-columns: 1fr;
}

.nav-mega-solutions {
    grid-template-columns: 1fr;
}

.nav-mega-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    padding: 10px;
    border-radius: 16px;
    background: var(--gray-50);
    border: 1px solid rgba(226, 232, 240, 0.72);
}

.nav-mega-label {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0 0 5px;
    padding: 0 2px;
    color: var(--gray-500);
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1.2;
}

.nav-mega-label i {
    color: var(--primary);
    font-size: 0.82rem;
}

.nav-mega-desc {
    min-height: 32px;
    margin: -1px 0 6px;
    padding: 0 2px;
    color: var(--gray-500);
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1.45;
}

.nav-product-group {
    background: linear-gradient(180deg, #fff, var(--gray-50));
}

.nav-product-entry-group {
    background: linear-gradient(180deg, #fff8f4, #fff);
    border-color: rgba(229, 90, 44, 0.18);
}

.nav-solution-unified {
    padding: 0;
    background: transparent;
    border: 0;
}

.nav-product-unified {
    padding: 0;
    background: transparent;
    border: 0;
}

.nav-solution-columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.nav-product-column,
.nav-solution-column {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.nav-product-column .nav-mega-label,
.nav-solution-column .nav-mega-label {
    margin-bottom: 8px;
    padding: 0 10px;
}

.nav-product-column a,
.nav-solution-column a {
    display: flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 10px;
    border-radius: var(--radius-full);
    color: var(--gray-700);
    font-size: 0.86rem;
    font-weight: 750;
    line-height: 1.25;
    transition: background var(--ease-fast), color var(--ease-fast);
}

.nav-product-column a:hover,
.nav-solution-column a:hover {
    background: var(--white);
    color: var(--primary);
}

.nav-mega-group a {
    display: flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 10px;
    border-radius: var(--radius-full);
    color: var(--gray-700);
    font-size: 0.86rem;
    font-weight: 750;
    line-height: 1.25;
    transition: background var(--ease-fast), color var(--ease-fast);
}

.nav-mega-group a:hover {
    background: var(--white);
    color: var(--primary);
}

.nav-buttons {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.demo-btn {
    background: var(--primary);
    color: var(--white);
    padding: 11px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.92rem;
    transition: all var(--ease-base);
    border: none;
    white-space: nowrap;
}

.demo-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(229, 90, 44, 0.4);
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.88rem;
    color: var(--gray-700);
    cursor: pointer;
    font-weight: 600;
    padding: 9px 14px;
    border-radius: 10px;
    transition: all var(--ease-fast);
}

.lang-switch:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.hamburger {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--dark);
    border-radius: 10px;
    transition: background var(--ease-fast);
    font-size: 1.2rem;
    border: none;
    background: transparent;
}

.hamburger:hover {
    background: var(--gray-100);
}

.hamburger i {
    transition: transform 0.3s ease;
}

.hamburger.active i {
    transform: rotate(90deg);
}

/* ===== 6. BREADCRUMB ===== */
.breadcrumb {
    display: none;
}

/* ===== 7. HERO SECTIONS ===== */
/* -- Homepage Hero -- */
.hero {
    padding: 70px 0 80px;
    background: linear-gradient(135deg, #FCF8F4, #FFFFFF);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-left h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-left p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.hero-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(229, 90, 44, 0.2);
}

.badge-group {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.5rem;
}

.badge {
    background: #F1F5F9;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
}

/* -- Page Hero (for detail/overview pages) -- */
.page-hero {
    padding: 150px 0 60px;
    background: linear-gradient(135deg, #FCF8F4 0%, #FFFFFF 100%);
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.page-hero-left .hero-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.page-hero-left h1 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
}

.page-hero-left p {
    font-size: 1.05rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    max-width: 520px;
}

.page-hero-left .hero-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-stat-badge {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 10px 18px;
    text-align: center;
    box-shadow: var(--shadow-xs);
}

.hero-stat-badge .value {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.hero-stat-badge .label {
    font-size: 0.72rem;
    color: var(--gray-500);
    font-weight: 500;
}

.page-hero-right .hero-visual {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(229, 90, 44, 0.15);
    position: relative;
}

.page-hero-right .hero-visual .visual-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.page-hero-right .hero-visual .visual-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-hero-right .hero-visual .visual-desc {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ===== 8. SECTION NAV (Sticky) ===== */
.section-nav {
    position: sticky;
    top: 65px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    z-index: 90;
    display: none;
    overflow-x: auto;
}

.section-nav.visible {
    display: block;
}

.section-nav .container {
    display: flex;
    gap: 0;
}

.section-nav-link {
    padding: 14px 20px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray-500);
    border-bottom: 2px solid transparent;
    transition: all var(--ease-base);
    white-space: nowrap;
    cursor: pointer;
}

.section-nav-link:hover {
    color: var(--primary);
}

.section-nav-link.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* ===== 9. SECTIONS ===== */
.section {
    padding: var(--section-pad) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1rem;
    color: var(--gray-600);
}

.section-header.left-align {
    text-align: left;
    margin: 0 0 3rem;
}

/* ===== 10. CARDS ===== */
/* -- Product Cards (Homepage) -- */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: transform var(--ease-slow), box-shadow var(--ease-slow), border-color var(--ease-slow);
    border: 1px solid #F0F0F0;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.card-carousel {
    position: relative;
    width: 100%;
    height: 260px;
    margin-bottom: 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #FEF7F3, #FEF1EA);
}

.carousel-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: carousel-fade 9s infinite;
}

.carousel-slide:nth-child(1) { animation-delay: 0s; }
.carousel-slide:nth-child(2) { animation-delay: 3s; }
.carousel-slide:nth-child(3) { animation-delay: 6s; }

@keyframes carousel-fade {
    0%   { opacity: 0; }
    5%   { opacity: 1; }
    30%  { opacity: 1; }
    35%  { opacity: 0; }
    100% { opacity: 0; }
}

.carousel-slide img {
    max-width: 90%;
    max-height: 230px;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.08));
}

.product-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.product-card p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-size: 0.92rem;
}

/* -- Solution Items -- */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    gap: 1.8rem;
}

.solution-item {
    background: var(--gray-100);
    padding: 1.8rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: transform var(--ease-slow), background var(--ease-slow), box-shadow var(--ease-slow);
}

.solution-item:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.solution-item i {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.solution-item h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.solution-item p {
    font-size: 0.88rem;
    color: var(--gray-600);
}

/* -- Feature Cards (Detail Page) -- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    transition: transform var(--ease-slow), box-shadow var(--ease-slow), border-color var(--ease-slow);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.feature-card .feature-icon {
    width: 52px;
    height: 52px;
    background: var(--primary-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.feature-card .feature-icon i {
    font-size: 1.4rem;
    color: var(--primary);
}

.feature-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* -- Model Cards (Detail Page) -- */
.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 1.5rem;
}

.model-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: transform var(--ease-slow), border-color var(--ease-slow), box-shadow var(--ease-slow);
}

.model-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.model-card.recommended {
    border-color: var(--primary);
}

.model-card .model-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 0 0 8px 8px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.model-card .model-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.model-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.model-card .model-subtitle {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
}

.model-card .model-specs {
    list-style: none;
    margin-bottom: 1.5rem;
}

.model-card .model-specs li {
    padding: 6px 0;
    font-size: 0.85rem;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 8px;
}

.model-card .model-specs li i {
    color: var(--success);
    font-size: 0.75rem;
}

/* -- Resource Cards -- */
.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    gap: 1.5rem;
}

.resource-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform var(--ease-base), box-shadow var(--ease-base);
    cursor: pointer;
}

.resource-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.resource-card .resource-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.resource-card .resource-icon i {
    font-size: 1.2rem;
    color: var(--primary);
}

.resource-card .resource-info h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.resource-card .resource-info p {
    font-size: 0.78rem;
    color: var(--gray-500);
}

/* -- News / Case Cards -- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 2rem;
}

.news-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid #EDEDF0;
    transition: transform var(--ease-slow), box-shadow var(--ease-slow);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.news-img {
    height: 180px;
    background: #EFF3F8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.news-content {
    padding: 1.2rem 1.5rem;
}

.news-date {
    font-size: 0.78rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.news-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.news-content p {
    font-size: 0.88rem;
    color: var(--gray-600);
    margin-bottom: 0.8rem;
}

/* -- Scenario Items -- */
.scenario-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
}

.scenario-item {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    transition: all var(--ease-base);
}

.scenario-item:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.scenario-item i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.scenario-item h5 {
    font-size: 0.9rem;
    font-weight: 700;
}

.scenario-item p {
    font-size: 0.78rem;
    color: var(--gray-500);
    margin-top: 0.3rem;
}

/* ===== 11. SPEC TABLE ===== */
.spec-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
}

.spec-category-title {
    background: var(--dark);
    color: var(--white);
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table tr:nth-child(even) {
    background: var(--gray-50);
}

.spec-table td {
    padding: 12px 20px;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--gray-100);
}

.spec-table td:first-child {
    font-weight: 600;
    color: var(--dark);
    width: 40%;
}

.spec-table td:last-child {
    color: var(--gray-600);
}

/* Spec table mobile: stack layout */
@media (max-width: 600px) {
    .spec-table,
    .spec-table tbody,
    .spec-table tr,
    .spec-table td {
        display: block;
        width: 100%;
    }
    .spec-table tr {
        padding: 10px 0;
        border-bottom: 1px solid var(--gray-100);
    }
    .spec-table td:first-child {
        width: 100%;
        padding-bottom: 4px;
        font-size: 0.82rem;
    }
    .spec-table td:last-child {
        width: 100%;
        padding-top: 0;
        font-size: 0.85rem;
        word-break: break-word;
    }
}

/* ===== 12. STATS ===== */
.stats-section {
    background: linear-gradient(120deg, #0F172A, #1E293B);
    color: var(--white);
    padding: 70px 0;
}

.about-stats,
.industries-stats {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF9F5 45%, #FFFFFF 100%);
    color: var(--dark);
}

.about-stats .stats-grid,
.industries-stats .stats-grid {
    gap: 1rem;
}

.about-stats .stat-item,
.industries-stats .stat-item {
    flex: 1 1 180px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(229, 90, 44, 0.08);
    border-radius: var(--radius-md);
    padding: 1.4rem 1rem;
    box-shadow: 0 10px 24px -22px rgba(15, 23, 42, 0.18);
}

.about-stats .stat-label,
.industries-stats .stat-label {
    color: var(--gray-600);
    opacity: 1;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: center;
    gap: 2rem;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===== 13. CTA ===== */
.cta-section {
    background: var(--primary-light);
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
    text-align: center;
    margin: 40px auto 60px;
}

.cta-section h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.cta-section p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

/* ===== 14. OVERVIEW PAGE CARDS ===== */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
    gap: 2rem;
}

.overview-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    transition: transform var(--ease-slow), box-shadow var(--ease-slow), border-color var(--ease-slow);
}

.overview-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.overview-card .overview-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.overview-card .overview-icon i {
    font-size: 1.8rem;
    color: var(--primary);
}

.overview-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}

.overview-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 1.2rem;
    flex-grow: 1;
}

.overview-card .overview-specs {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.overview-card .overview-specs .spec-tag {
    background: var(--gray-100);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gray-600);
}

/* ===== 15. FOOTER ===== */
footer {
    background-color: #0F111A;
    color: #C0C5D6;
    padding: 60px 0 30px;
    margin-top: 40px;
}

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

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1.2rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.7rem;
}

.footer-col a {
    text-decoration: none;
    color: #B0B5CE;
    font-size: 0.88rem;
    transition: color var(--ease-base);
}

.footer-col a:hover {
    color: var(--primary);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons i {
    font-size: 1.2rem;
    cursor: pointer;
    transition: color var(--ease-base);
}

.social-icons i:hover {
    color: var(--primary);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #1E2438;
    font-size: 0.8rem;
}

/* ===== 16. LOADING ===== */
.config-loading {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    z-index: 1000;
    display: flex;
    gap: 6px;
    backdrop-filter: blur(4px);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.config-loading i {
    animation: spin 1s linear infinite;
}

/* ===== 17. SCROLL REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== 18. SUB-PRODUCT DETAIL PAGE ===== */
.sub-product-hero {
    padding: 50px 0 60px;
    background: linear-gradient(135deg, #FCF8F4 0%, #FFFFFF 100%);
}

.sub-product-hero .container {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 3rem;
    align-items: center;
}

.sub-product-image {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(229, 90, 44, 0.15);
    position: relative;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sub-product-image .product-icon {
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: 1.2rem;
}

.sub-product-image .product-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.sub-product-image .product-sublabel {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.sub-product-image .badge-group {
    margin-top: 1.2rem;
}

.sub-product-info {
    display: flex;
    flex-direction: column;
}

.sub-product-info .hero-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    width: fit-content;
}

.sub-product-info h1 {
    font-size: 2.4rem;
    margin-bottom: 0.8rem;
    color: var(--dark);
}

.sub-product-info .subtitle {
    font-size: 1.05rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.sub-product-info .description {
    font-size: 0.92rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.sub-product-info .hero-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.sub-product-info .hero-buttons {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.model-card.clickable {
    cursor: pointer;
}

.model-card.clickable:hover {
    border-color: var(--primary);
}

@media (max-width: 950px) {
    .sub-product-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .sub-product-info h1 {
        font-size: 2rem;
    }
    .sub-product-info .hero-stats {
        justify-content: center;
    }
    .sub-product-info .hero-buttons {
        justify-content: center;
    }
    .sub-product-info .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }
    .sub-product-image {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ===== 19. RESPONSIVE ===== */
@media (max-width: 950px) {
    body.nav-open {
        overflow: hidden;
    }

    .navbar {
        padding: 10px 12px 6px;
    }

    .nav-container {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto auto;
        align-items: center;
        gap: 8px;
        height: auto;
        min-height: 64px;
        padding: 10px 12px;
        border-radius: 14px;
    }

    .logo {
        min-width: 0;
    }

    .logo img {
        max-width: 140px;
        height: 34px !important;
        object-fit: contain;
    }

    .nav-buttons {
        order: initial;
    }

    .nav-buttons .demo-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 42px;
        padding: 0 16px;
        border-radius: 10px;
        font-size: 0.88rem;
    }

    .hamburger {
        display: flex;
        width: 42px;
        height: 42px;
    }

    .nav-links {
        grid-column: 1 / -1;
        width: 100%;
        max-height: calc(100dvh - 96px);
        margin: 8px 0 0;
        padding: 8px;
        overflow-y: auto;
        overscroll-behavior: contain;
        border-radius: 14px;
        gap: 4px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(0, 0, 0, 0.06);
        box-shadow: 0 16px 48px -8px rgba(0, 0, 0, 0.12);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links .nav-item {
        display: block;
        width: 100%;
    }

    .nav-links > .nav-item > a {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        padding: 12px 14px;
        font-size: 0.95rem;
        text-align: left;
        border-radius: 10px;
    }

    .nav-links .nav-item.has-dropdown > a i {
        margin-left: auto;
        font-size: 0.7rem;
        opacity: 0.6;
    }

    .nav-links .nav-item.has-mega > a i {
        margin-left: auto;
        font-size: 0.7rem;
        opacity: 0.6;
    }

    .hamburger {
        display: flex;
    }

    .nav-buttons .lang-switch {
        display: none;
    }

    .mobile-lang-switch {
        display: block !important;
    }

    .hero-grid,
    .page-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .page-hero-left p {
        max-width: 100%;
    }

    .page-hero-left .hero-stats {
        justify-content: center;
    }

    .container {
        padding: 0 24px;
    }

    .dropdown {
        position: static !important;
        box-shadow: none !important;
        background: #f9fafb;
        margin-top: 0.25rem;
        margin-left: 0;
        margin-bottom: 0.25rem;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        padding: 0.35rem;
        border-radius: 10px;
        display: none;
        width: 100%;
        min-width: 0;
    }

    .dropdown::before {
        display: none;
    }

    .dropdown.mobile-open {
        display: block;
    }

    .nav-item.has-dropdown:hover .dropdown {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .dropdown a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 14px 10px 20px;
        font-size: 0.9rem;
        border-radius: 8px;
        color: var(--gray-700);
    }

    .nav-item.has-dropdown > a i {
        transition: transform 0.3s ease;
    }

    .nav-item.has-dropdown.mobile-open > a i {
        transform: rotate(180deg);
    }

    /* Mega menu mobile */
    .mega-menu {
        position: static !important;
        box-shadow: none !important;
        background: #f9fafb;
        margin-top: 0.25rem;
        margin-bottom: 0.25rem;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        padding: 0;
        border-radius: 10px;
        display: none;
        width: 100% !important;
        max-width: 100% !important;
    }

    .mega-menu.mobile-open {
        display: block;
    }

    .nav-item.has-mega:hover .mega-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .mega-header {
        padding: 0.7rem 0.75rem;
    }

    .mega-body {
        padding: 0.5rem 0.75rem 0.75rem;
    }

    .mega-sections {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .mega-section {
        padding: 0.75rem;
    }

    .mega-header-title,
    .mega-header-dot {
        display: none;
    }

    .mega-header-link {
        width: 100%;
        justify-content: space-between;
        margin-left: 0;
        padding: 10px 12px;
        background: #fff;
        border-radius: 10px;
        color: var(--dark);
        font-size: 0.92rem;
    }

    .mega-section {
        margin: 0;
        padding: 10px;
        background: #fff;
        border: 1px solid var(--gray-100);
        border-radius: 10px;
    }

    .mega-section a {
        min-height: 40px;
        padding: 9px 8px;
        gap: 8px;
        font-size: 0.9rem;
        line-height: 1.35;
    }

    .mega-tag {
        margin-left: auto;
        flex-shrink: 0;
    }

    .mega-view-all {
        padding: 8px 0 0;
        border-top: 0;
    }

    .mega-view-all a {
        display: flex;
        justify-content: center;
        padding: 10px 12px;
        background: var(--primary-light);
        border-radius: 10px;
    }

    .mega-menu-apple {
        width: 100% !important;
        margin: 4px 0 8px;
        padding: 0;
        border-radius: 12px;
        background: #f8fafc;
        box-shadow: none !important;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .apple-menu-inner,
    .apple-menu-inner-wide {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 14px;
    }

    .apple-menu-label {
        min-height: auto;
        margin-bottom: 8px;
        font-size: 0.72rem;
    }

    .apple-menu-column {
        gap: 7px;
    }

    .apple-menu-column a {
        font-size: 0.9rem;
    }

    .apple-menu-primary .apple-menu-main {
        font-size: 0.9rem;
    }

    .mega-menu-capsule {
        width: 100% !important;
        margin: 4px 0 8px;
        padding: 10px;
        border-radius: 14px;
        background: #f8fafc;
        border: 1px solid rgba(226, 232, 240, 0.9);
        box-shadow: none !important;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .nav-mega-head {
        margin-bottom: 10px;
        padding: 0;
    }

    .nav-mega-head span {
        display: none;
    }

    .nav-mega-head a {
        width: 100%;
        justify-content: space-between;
        min-height: 42px;
        padding: 10px 12px;
        border-radius: 12px;
        background: var(--white);
        color: var(--dark);
        font-size: 0.9rem;
    }

    .nav-mega-grid,
    .nav-mega-products,
    .nav-mega-solutions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .nav-solution-columns {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .nav-product-unified,
    .nav-solution-unified {
        padding: 0;
    }

    .nav-mega-group {
        gap: 4px;
        padding: 10px;
        border-radius: 12px;
        background: var(--white);
    }

    .nav-mega-label {
        margin-bottom: 3px;
        font-size: 0.7rem;
    }

    .nav-mega-desc {
        min-height: auto;
        margin: 0 0 5px;
        font-size: 0.72rem;
    }

    .nav-mega-group a {
        min-height: 38px;
        padding: 9px 10px;
        border-radius: 12px;
        font-size: 0.88rem;
    }

    .nav-item.highlight-nav > a::after {
        display: none;
    }

    .nav-item.has-mega > a i {
        transition: transform 0.3s ease;
    }

    .nav-item.has-mega.mobile-open > a i {
        transform: rotate(180deg);
    }

    .section {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .hero-left h1 {
        font-size: 2.4rem;
    }

    .page-hero-left h1 {
        font-size: 2rem;
    }

    .section-nav .container {
        padding: 0 16px;
    }

    .section-nav-link {
        padding: 12px 14px;
        font-size: 0.82rem;
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero-left h1 {
        font-size: 1.9rem;
    }

    .page-hero-left h1 {
        font-size: 1.7rem;
    }

    .stats-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .cards-grid,
    .feature-grid,
    .models-grid {
        grid-template-columns: 1fr;
    }

    .hero-left .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }
}

/* ===== SEARCH SECTION ===== */
.search-section {
    padding: 0 0 2rem;
    background: var(--gray-50);
}

.search-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2.5rem 3rem;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.search-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.search-header {
    text-align: center;
    margin-bottom: 2rem;
}

.search-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.search-header h2 i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.search-header p {
    color: var(--gray-500);
    font-size: 0.95rem;
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.search-fields {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.search-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.search-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 6px;
}

.search-field label i {
    color: var(--primary);
    font-size: 0.8rem;
}

.search-field select {
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--dark);
    background: var(--white);
    cursor: pointer;
    transition: all 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
    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='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.search-field select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.search-field select:hover {
    border-color: var(--gray-300);
}

.search-btn {
    align-self: center;
    padding: 0.85rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(229, 90, 44, 0.3);
}

/* Home query dual buttons */
.home-query-actions {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
}

.home-query-actions .search-btn {
    white-space: nowrap;
}

.search-btn-accent {
    background: var(--dark) !important;
}

.search-btn-accent:hover {
    background: var(--dark-secondary) !important;
}

/* Payment method result card */
.payment-method-result {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    animation: fadeInUp 0.3s ease;
}

.payment-method-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.2rem;
    border-bottom: 2px solid var(--gray-100);
}

.result-kicker {
    display: block;
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.payment-method-head h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0;
}

.payment-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0.8rem 0.5rem;
    transition: all 0.2s ease;
}

.payment-logo-item:hover {
    background: transparent;
    transform: translateY(-2px);
}

.payment-logo-item img {
    width: 48px;
    height: 32px;
    object-fit: contain;
}

.payment-logo-fallback {
    display: grid;
    place-items: center;
    width: 48px;
    height: 32px;
    border-radius: 8px;
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 0.72rem;
    font-weight: 850;
}

.payment-logo-item span {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gray-600);
    text-align: center;
    line-height: 1.2;
}

.payment-method-note {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    color: var(--gray-500);
    font-size: 0.82rem;
    line-height: 1.6;
    padding: 0.75rem 1rem;
    margin: 0;
}

@media (max-width: 950px) {
    .home-query-actions {
        width: 100%;
    }
    .home-query-actions .search-btn {
        flex: 1;
        justify-content: center;
    }
    .payment-method-head {
        flex-direction: column;
        gap: 1rem;
    }
    .payment-logo-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
}

@media (max-width: 600px) {
    .home-query-actions {
        flex-direction: column;
    }
    .payment-logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Search Results */
.search-results {
    margin-top: 2rem;
    scroll-margin-top: 112px;
    animation: fadeInUp 0.3s ease;
}

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

.search-result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-100);
}

.search-result-header h3 {
    font-size: 1.2rem;
    color: var(--dark);
}

.search-result-disclaimer {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    color: var(--gray-600);
    font-size: 0.86rem;
    line-height: 1.6;
    margin: -0.5rem 0 1.2rem;
    padding: 0.85rem 1rem;
}

.search-result-count {
    background: var(--primary-light);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.search-result-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
    gap: 1.2rem;
}

.search-result-card {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: all 0.2s ease;
    background: var(--white);
}

.search-result-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.search-result-country {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--gray-100);
}

.country-flag {
    font-size: 1.8rem;
}

.search-result-country h4 {
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 700;
}

.search-result-payments {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.payment-group {
    padding: 0.6rem 0;
}

.payment-label {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.payment-label i {
    color: var(--primary);
    width: 18px;
    text-align: center;
}

.device-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-left: 24px;
}

.device-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    color: var(--gray-600);
    font-weight: 500;
}

.device-tag i {
    font-size: 0.7rem;
    color: var(--gray-400);
}

.search-result-cta {
    border-top: 1px solid var(--gray-100);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.result-note {
    font-size: 0.8rem;
    color: var(--gray-400);
    flex: 1;
}

.search-result-cta .btn-primary {
    white-space: nowrap;
}

.search-result-empty {
    text-align: center;
    padding: 2rem;
    color: var(--gray-500);
}

.search-result-empty i {
    font-size: 2.5rem;
    color: var(--gray-300);
    margin-bottom: 1rem;
    display: block;
}

.search-result-empty p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.query-empty-state {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 1.25rem;
    align-items: stretch;
    width: 100%;
    padding: 1.35rem;
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    background: linear-gradient(135deg, var(--white) 0%, #fffaf7 100%);
    box-shadow: var(--shadow-sm);
    text-align: left;
}

.query-empty-main {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    min-width: 0;
}

.query-empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 1.2rem;
}

.query-empty-kicker {
    display: inline-flex;
    margin-bottom: 0.28rem;
    color: var(--primary);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.query-empty-title {
    margin: 0;
    color: var(--dark);
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1.3;
}

.query-empty-message {
    margin: 0.55rem 0 0;
    color: var(--gray-600);
    font-size: 0.92rem;
    line-height: 1.65;
}

.query-empty-meta {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin: 0.85rem 0 0;
    padding: 0.45rem 0.72rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    background: var(--gray-50);
    color: var(--gray-500);
    font-size: 0.82rem;
    line-height: 1.3;
}

.query-empty-meta strong {
    color: var(--dark);
    font-weight: 800;
}

.query-empty-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.9rem;
    padding: 1rem;
    border: 1px dashed rgba(229, 90, 44, 0.22);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
}

.query-empty-help {
    margin: 0;
    color: var(--gray-600);
    font-size: 0.86rem;
    line-height: 1.6;
}

.query-empty-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.query-empty-suggestions span {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.7rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    background: var(--white);
    color: var(--gray-700);
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1;
}

.query-empty-actions {
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.query-empty-actions .btn-primary {
    width: 100%;
    justify-content: center;
    white-space: nowrap;
}

.payment-mode-results {
    display: grid;
    gap: 1.2rem;
}

.payment-mode-card {
    width: 100%;
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    padding: 1.4rem;
    background: linear-gradient(180deg, var(--white) 0%, #fffaf7 100%);
    box-shadow: var(--shadow-sm);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.payment-mode-card:hover {
    border-color: rgba(229, 90, 44, 0.34);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.payment-mode-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid var(--gray-100);
}

.payment-mode-country {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    min-width: 0;
}

.payment-mode-country .country-flag {
    line-height: 1;
    flex: 0 0 auto;
}

.payment-mode-kicker {
    display: inline-flex;
    margin-bottom: 0.22rem;
    color: var(--primary);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.payment-mode-title {
    margin: 0;
    color: var(--dark);
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1.28;
    letter-spacing: 0;
}

.payment-mode-summary {
    margin: 0.35rem 0 0;
    color: var(--gray-600);
    font-size: 0.92rem;
    line-height: 1.6;
}

.payment-mode-body {
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.35fr);
    gap: 1.25rem;
}

.payment-mode-section h4 {
    margin: 0 0 0.75rem;
    color: var(--gray-500);
    font-size: 0.88rem;
    font-weight: 800;
}

.payment-capability-grid,
.scenario-chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.payment-capability {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.52rem 0.78rem;
    border: 1px solid rgba(229, 90, 44, 0.18);
    border-radius: var(--radius-full);
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 800;
    line-height: 1;
}

.payment-capability i {
    width: 1rem;
    text-align: center;
    font-size: 0.82rem;
}

.scenario-chip-grid .dev-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.72rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    background: var(--gray-50);
    color: var(--gray-700);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
}

.scenario-chip-grid .dev-tag i {
    color: var(--gray-500);
    width: 1rem;
    text-align: center;
    font-size: 0.78rem;
}

.payment-mode-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 1.3rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
}

.payment-mode-note {
    margin: 0;
    color: var(--gray-500);
    font-size: 0.84rem;
    line-height: 1.55;
}

.payment-mode-card .btn-primary {
    white-space: nowrap;
}

/* Search Section Responsive */
@media (max-width: 950px) {
    .search-fields {
        grid-template-columns: 1fr;
    }

    .search-box {
        padding: 2rem 1.5rem;
    }

    .search-result-grid {
        grid-template-columns: 1fr;
    }

    .search-result-cta {
        flex-direction: column;
        text-align: center;
    }

    .payment-mode-head {
        flex-direction: column;
        align-items: stretch;
    }

    .payment-mode-body {
        grid-template-columns: 1fr;
    }

    .payment-mode-card .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .query-empty-state {
        grid-template-columns: 1fr;
    }

    .query-empty-actions .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .search-header h2 {
        font-size: 1.3rem;
    }

    .search-btn {
        width: 100%;
        justify-content: center;
    }

    .payment-mode-card {
        padding: 1.1rem;
        border-radius: 14px;
    }

    .payment-mode-country {
        gap: 0.7rem;
    }

    .payment-mode-title {
        font-size: 1.15rem;
    }

    .payment-capability,
    .scenario-chip-grid .dev-tag {
        font-size: 0.8rem;
    }

    .query-empty-state {
        padding: 1.05rem;
        border-radius: 14px;
    }

    .query-empty-main {
        flex-direction: column;
        gap: 0.8rem;
    }

    .query-empty-icon {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }

    .query-empty-title {
        font-size: 1.1rem;
    }

    .query-empty-side {
        padding: 0.85rem;
    }
}

/* ===== 20. HOME REDESIGN ===== */
.eyebrow {
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.home-hero {
    background:
        radial-gradient(circle at 12% 18%, rgba(229, 90, 44, 0.12), transparent 30%),
        linear-gradient(135deg, #fff8f4 0%, #ffffff 48%, #f8fafc 100%);
    padding: 140px 0 96px;
    overflow: hidden;
}

.home-hero .container {
    max-width: 1500px;
}

.home-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.66fr) minmax(620px, 1.34fr);
    gap: 1.4rem;
    align-items: center;
}

.home-hero-copy h1 {
    font-size: clamp(2.5rem, 5vw, 4.7rem);
    line-height: 1.06;
    margin-bottom: 1.4rem;
    letter-spacing: 0;
}

.home-hero-copy h1 span {
    color: var(--primary);
}

.home-hero-copy p {
    max-width: 660px;
    color: var(--gray-600);
    font-size: 1.08rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 1.6rem;
}

.home-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.home-trust-row span {
    border: 1px solid var(--gray-200);
    background: rgba(255, 255, 255, 0.78);
    border-radius: var(--radius-full);
    color: var(--gray-600);
    font-size: 0.86rem;
    padding: 7px 14px;
}

.home-trust-row strong {
    color: var(--dark);
    margin-right: 4px;
}
.home-trust-item {
    text-align: center;
}

.home-trust-num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 4px;
}

.home-trust-num span {
    color: var(--primary);
    border: none;
    background: none;
    padding: 0;
    font-size: inherit;
}

.home-trust-label {
    font-size: .82rem;
    color: var(--gray-500);
    font-weight: 500;
}

.home-hero-visual {
    background: var(--white);
    border: 1px solid rgba(229, 90, 44, 0.16);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 1.4rem;
}

.home-hero-image-card {
    padding: 0;
    overflow: hidden;
    justify-self: end;
    width: min(100%, 900px);
    border-radius: var(--radius-lg);
    background: transparent;
    border: 0;
    box-shadow: none;
}

.home-hero-image-card img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: inherit;
}

.visual-topline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray-500);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.device-stage {
    min-height: 420px;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.04), rgba(229, 90, 44, 0.08)),
        repeating-linear-gradient(90deg, transparent 0, transparent 42px, rgba(15, 23, 42, 0.04) 43px);
    border: 1px dashed rgba(100, 116, 139, 0.3);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.device-card {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 1.2rem;
}

.device-card i {
    color: var(--primary);
    font-size: 1.7rem;
}

.device-card strong {
    color: var(--dark);
    font-size: 0.98rem;
}

.device-card span {
    color: var(--gray-500);
    font-size: 0.78rem;
}

.device-card-main {
    left: 13%;
    right: 18%;
    top: 16%;
    min-height: 170px;
    justify-content: center;
}

.device-card-main i {
    font-size: 3.2rem;
}

.device-card-side {
    left: 6%;
    bottom: 9%;
    width: 50%;
}

.device-card-coin {
    right: 6%;
    bottom: 15%;
    width: 36%;
}

.home-hero-visual > p {
    color: var(--gray-500);
    font-size: 0.82rem;
    text-align: center;
    margin-top: 1rem;
}

.home-finder {
    background: var(--white);
    margin-top: -46px;
    position: relative;
    z-index: 5;
    scroll-margin-top: 80px;
}

.region-search-panel {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.region-search-row {
    display: flex;
    gap: 1rem;
    align-items: stretch;
}

.region-input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-radius: 12px;
    padding: 0 1.2rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.region-input-wrap:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(229, 90, 44, 0.1);
}

.region-input-wrap i {
    color: var(--gray-400);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.region-input-wrap input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.85rem 0;
    font-size: 1rem;
    color: var(--dark);
    outline: none;
    font-family: inherit;
}

.region-input-wrap input::placeholder {
    color: var(--gray-400);
}

.region-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.region-quick-links button {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.region-quick-links button:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.home-search-box {
    border-radius: var(--radius-xl);
}

.home-solution-packs {
    background: #f5f5f7;
    padding: 110px 0;
}

.home-solution-packs .section-header {
    max-width: 980px;
    margin: 0 auto 4rem;
    text-align: left;
}

.home-solution-packs .section-header h2 {
    color: var(--dark);
    font-size: clamp(3.2rem, 6vw, 4.8rem);
    line-height: 1.04;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.home-solution-packs .section-header p {
    max-width: 780px;
    color: var(--gray-600);
    font-size: 1.15rem;
    line-height: 1.75;
}

.solution-pack-grid {
    display: grid;
    gap: 0;
    max-width: 980px;
    margin: 0 auto;
    border-top: 1px solid rgba(20, 20, 20, 0.12);
}

.solution-pack {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr) minmax(220px, 0.45fr);
    gap: 2rem;
    align-items: start;
    padding: 2.4rem 0;
    border-bottom: 1px solid rgba(20, 20, 20, 0.12);
}

.industry-tile:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(229, 90, 44, 0.35);
}

.pack-index {
    color: var(--primary);
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.solution-pack h3 {
    color: var(--dark);
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 0.85rem;
}

.industry-tile h3 {
    font-size: 1.25rem;
    margin-bottom: 0.7rem;
}

.solution-pack p {
    max-width: 560px;
    color: var(--gray-600);
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 0;
}

.industry-tile p {
    color: var(--gray-600);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.product-card .model-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    justify-content: center;
    margin: 0.8rem 0 1.2rem;
}

.pack-tags {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 0.35rem 0;
    color: var(--gray-500);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.6;
    text-transform: uppercase;
    padding-top: 0.2rem;
}

.pack-tags span {
    display: inline-flex;
    align-items: center;
}

.pack-tags a {
    display: inline-flex;
    align-items: center;
    color: var(--gray-600);
    text-decoration: none;
    font-size: inherit;
    font-weight: inherit;
    transition: color 0.2s ease;
}

.pack-tags a:hover {
    color: var(--primary);
}

.pack-tags span:not(:last-child)::after,
.pack-tags a:not(:last-child)::after {
    content: "/";
    color: var(--gray-300);
    margin: 0 0.55rem;
}

.product-card .model-tag {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    color: var(--gray-600);
    font-size: 0.74rem;
    font-weight: 700;
    padding: 4px 11px;
}

.solution-pack-cta {
    max-width: 980px;
    margin: 3rem auto 0;
}

.product-card .model-tag:hover {
    background: var(--primary-light);
    border-color: rgba(229, 90, 44, 0.3);
    color: var(--primary);
}

.home-products .card-icon i {
    color: var(--primary);
    font-size: 2.3rem;
}

.home-industries {
    background: var(--white);
}

.industry-grid {
    grid-template-columns: none;
    display: flex;
    gap: 1.25rem;
    overflow: hidden;
    position: relative;
    padding-bottom: 0;
}

.industry-grid-track {
    display: flex;
    gap: 1.25rem;
    animation: industryScroll 30s linear infinite;
    width: max-content;
}

.industry-grid:hover .industry-grid-track {
    animation-play-state: paused;
}

@keyframes industryScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.industry-tile {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--ease-slow), box-shadow var(--ease-slow), border-color var(--ease-slow);
    flex: 0 0 280px;
    min-width: 280px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.industry-tile .industry-img-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, var(--primary-light), #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 3rem;
    border-bottom: 1px solid var(--gray-100);
}

.industry-tile > i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: var(--primary-light);
    border-radius: 14px;
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.industry-tile .industry-tile-content {
    padding: 1.2rem 1.4rem;
}

.industry-tile h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.industry-tile p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

.home-strength {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF9F5 44%, #FFFFFF 100%);
    color: var(--dark);
    padding: 82px 0;
}

.strength-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: center;
}

.strength-copy h2 {
    color: var(--dark);
    font-size: 2.35rem;
    margin-bottom: 1rem;
}

.strength-copy p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.strength-copy .btn-dark {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 24px -12px rgba(229, 90, 44, 0.5);
}

.strength-copy .btn-dark:hover {
    background: var(--primary-dark);
}

.strength-list {
    display: grid;
    gap: 1rem;
}

.strength-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(229, 90, 44, 0.08);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    box-shadow: 0 10px 24px -22px rgba(15, 23, 42, 0.18);
}

.strength-item i {
    width: 54px;
    height: 54px;
    background: var(--primary-light);
    border-radius: 14px;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.strength-item h3 {
    color: var(--dark);
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}

.strength-item p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.65;
}

body[data-page="home"] footer {
    margin-top: 0;
}

@media (max-width: 1100px) {
    .industry-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 950px) {
    .home-hero {
        padding: 120px 0 86px;
    }

    .home-hero-grid,
    .strength-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .home-hero-copy {
        text-align: center;
    }

    .home-hero-copy p,
    .home-trust-row,
    .home-hero-actions {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .home-hero-visual {
        max-width: 560px;
        margin: 0 auto;
    }

    .home-hero-image-card img {
        height: auto;
    }

    .solution-pack-grid {
        grid-template-columns: 1fr;
    }

    .home-solution-packs {
        padding: 82px 0;
    }

    .home-solution-packs .section-header {
        margin-bottom: 2.8rem;
    }

    .solution-pack {
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 1rem 1.4rem;
    }

    .solution-pack .pack-tags {
        grid-column: 2;
    }

    .region-search-panel {
        padding: 1.5rem;
    }

    .region-search-row {
        flex-direction: column;
    }
}

@media (max-width: 700px) {
    .industry-grid {
        grid-template-columns: 1fr;
    }

    .device-stage {
        min-height: 360px;
    }

    .device-card-main,
    .device-card-side,
    .device-card-coin {
        left: 7%;
        right: 7%;
        width: auto;
    }

    .device-card-main {
        top: 7%;
        min-height: 126px;
    }

    .device-card-side {
        bottom: 30%;
    }

    .device-card-coin {
        bottom: 7%;
    }

    .search-result-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.7rem;
    }
}

@media (max-width: 600px) {
    .home-hero-copy h1 {
        font-size: 2.25rem;
    }

    /* Keep the industry marquee auto-scrolling on mobile without internal scrollbars */
    .industry-grid-track {
        overflow: visible;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        animation: industryScroll 30s linear infinite;
    }

    .linear-acc-track {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        animation: none;
    }

    .industry-tile,
    .linear-acc-card {
        scroll-snap-align: start;
    }

    /* Ensure horizontal content containers don't leak */
    .industry-grid,
    .linear-acc-scroll {
        overflow: hidden;
        max-width: 100%;
    }

    .home-hero-actions .btn-primary,
    .home-hero-actions .btn-outline,
    .home-final-cta .btn-dark {
        justify-content: center;
        width: 100%;
    }

    .home-search-box {
        padding: 1.5rem 1rem;
    }

    .home-solution-packs {
        padding: 64px 0;
    }

    .home-solution-packs .section-header h2 {
        font-size: clamp(2.35rem, 11vw, 3rem);
    }

    .home-solution-packs .section-header p {
        font-size: 1rem;
    }

    .solution-pack {
        grid-template-columns: 1fr;
        gap: 0.7rem;
        padding: 1.75rem 0;
    }

    .solution-pack .pack-tags {
        grid-column: auto;
    }

    .solution-pack h3 {
        font-size: 1.65rem;
    }

    .solution-pack p {
        font-size: 0.96rem;
    }

    .solution-pack-cta .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .strength-item {
        grid-template-columns: 1fr;
    }
}

/* ===== SOLUTION FINDER v2 ===== */
.finder-form {
    position: relative;
    margin-bottom: 0;
}

.finder-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    padding: 4px 4px 4px 20px;
    transition: border-color var(--ease-base), box-shadow var(--ease-base);
}

.finder-input-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(229, 90, 44, 0.12);
}

.finder-input-icon {
    color: var(--gray-400);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-right: 10px;
}

.finder-country-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    font-family: inherit;
    color: var(--dark);
    padding: 12px 0;
    background: transparent;
    min-width: 0;
}

.finder-country-input::placeholder {
    color: var(--gray-400);
}

.finder-search-btn {
    flex-shrink: 0;
    border-radius: var(--radius-full);
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* Results */
.finder-results {
    margin-top: 1.5rem;
    animation: fadeInUp 0.3s ease;
}

/* Simple Result */
.finder-simple-result {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.finder-simple-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--gray-200);
}

.finder-simple-header .finder-flag {
    font-size: 1.8rem;
}

.finder-simple-header h3 {
    font-size: 1.2rem;
    color: var(--dark);
    font-weight: 700;
}

.finder-simple-rows {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 1rem;
}

.finder-simple-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.finder-row-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.finder-row-icon i {
    font-size: 0.85rem;
}

.finder-row-cash {
    background: #ecfdf5;
}
.finder-row-cash i {
    color: #059669;
}

.finder-row-noncash {
    background: #eff6ff;
}
.finder-row-noncash i {
    color: #2563eb;
}

.finder-row-label {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--dark);
    min-width: 72px;
    flex-shrink: 0;
}

.finder-row-desc {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.finder-simple-devices {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    padding: 0.8rem 0;
    border-top: 1px solid var(--gray-200);
    font-size: 0.85rem;
    line-height: 1.6;
}

.finder-devices-label {
    font-weight: 600;
    color: var(--gray-700);
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.finder-devices-label i {
    color: var(--primary);
    font-size: 0.8rem;
}

.finder-devices-list {
    color: var(--gray-500);
}

.finder-simple-cta {
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
    text-align: center;
}

.finder-empty {
    text-align: center;
    padding: 2rem;
    color: var(--gray-500);
}

.finder-empty i {
    font-size: 2.5rem;
    color: var(--gray-300);
    margin-bottom: 1rem;
    display: block;
}

.finder-empty p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Payment Marquee */
.finder-payments-marquee {
    margin-top: 1.5rem;
    overflow: hidden;
    position: relative;
    padding: 0.8rem 0;
    border-top: none;
    border-bottom: none;
}

.finder-payments-marquee::before,
.finder-payments-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}

.finder-payments-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}

.finder-payments-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}

.marquee-track {
    overflow: hidden;
    width: 100%;
}

.marquee-content {
    display: flex;
    gap: 0.7rem;
    animation: marqueeScroll 25s linear infinite;
    width: max-content;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    padding: 4px 6px;
    border-radius: 0;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-600);
    white-space: nowrap;
    flex-shrink: 0;
}

.marquee-tag i {
    font-size: 1.15rem;
}

.marquee-tag:hover {
    color: var(--primary);
}

/* Finder Responsive */
@media (max-width: 600px) {
    .finder-input-wrapper {
        flex-wrap: wrap;
        border-radius: var(--radius-lg);
        padding: 8px;
    }

    .finder-input-icon {
        display: none;
    }

    .finder-country-input {
        width: 100%;
        padding: 10px 12px;
    }

    .finder-search-btn {
        width: 100%;
        justify-content: center;
    }

    .finder-simple-row {
        flex-wrap: wrap;
    }

    .finder-simple-devices {
        flex-direction: column;
    }
}

/* ===== 21. PRODUCTS OVERVIEW SHOWCASE PAGE ===== */

/* -- Products Hero -- */
.products-hero {
    padding: 64px 0 80px;
    background:
        radial-gradient(circle at 10% 20%, rgba(229, 90, 44, 0.1), transparent 28%),
        linear-gradient(135deg, #fff8f4 0%, #ffffff 45%, #f8fafc 100%);
    overflow: hidden;
}

.products-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: 3.5rem;
    align-items: center;
}

.products-hero-copy h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    line-height: 1.08;
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
}

.products-hero-copy p {
    max-width: 580px;
    color: var(--gray-600);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.8rem;
}

.products-hero-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.products-hero-stats .hero-stat-badge {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    text-align: center;
    box-shadow: var(--shadow-xs);
    min-width: 100px;
}

.products-hero-stats .hero-stat-badge .value {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.products-hero-stats .hero-stat-badge .label {
    font-size: 0.72rem;
    color: var(--gray-500);
    font-weight: 500;
}

.products-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

/* -- Products Hero Visual Stage -- */
.products-hero-visual {
    background: var(--white);
    border: 1px solid rgba(229, 90, 44, 0.14);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 1.4rem;
}

.products-visual-stage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    min-height: 340px;
    padding: 0.6rem;
}

.pv-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.4rem 1rem;
    text-align: center;
    transition: all 0.35s ease;
}

.pv-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(229, 90, 44, 0.3);
    background: var(--white);
}

.pv-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.pv-card strong {
    font-size: 1rem;
    color: var(--dark);
}

.pv-card span {
    font-size: 0.78rem;
    color: var(--gray-500);
}

.pv-card-main {
    background: linear-gradient(135deg, rgba(229, 90, 44, 0.06), rgba(229, 90, 44, 0.02));
    border-color: rgba(229, 90, 44, 0.18);
}

.pv-card-main i {
    font-size: 2.6rem;
}

/* -- Category Nav -- */
.product-category-nav {
    position: sticky;
    top: 80px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    z-index: 90;
    transition: box-shadow 0.3s ease;
}

.product-category-nav.scrolled-shadow {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.product-cat-tabs {
    display: flex;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.product-cat-tabs::-webkit-scrollbar {
    display: none;
}

.product-cat-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--gray-500);
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    transition: all var(--ease-base);
    text-decoration: none;
    cursor: pointer;
}

.product-cat-tab i {
    font-size: 1rem;
    transition: color var(--ease-base);
}

.product-cat-tab:hover {
    color: var(--primary);
}

.product-cat-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.product-cat-tab.active i {
    color: var(--primary);
}

/* -- Marquee Section -- */
.products-marquee-section {
    padding: 0.5rem 0;
    background: var(--white);
}

/* -- Products Showcase Sections -- */
.products-showcase {
    padding: 72px 0;
    position: relative;
}

.products-showcase.showcase-alt {
    background: var(--gray-50);
}

.products-showcase.showcase-dark {
    background: linear-gradient(120deg, #0f172a, #1e293b);
}

.showcase-header {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.showcase-header-left {
    display: flex;
    flex-direction: column;
}

.showcase-header-left .showcase-icon {
    width: 72px;
    height: 72px;
    background: var(--primary-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.showcase-header-left .showcase-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.showcase-header-left h2 {
    font-size: 2rem;
    margin-bottom: 0.6rem;
    color: var(--dark);
}

.showcase-dark .showcase-header-left h2 {
    color: var(--white);
}

.showcase-header-left .showcase-subtitle {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.showcase-dark .showcase-header-left .showcase-subtitle {
    color: #cbd5e1;
}

.showcase-header-right {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.showcase-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    padding: 8px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    box-shadow: var(--shadow-xs);
}

.showcase-stat-pill .stat-value {
    color: var(--primary);
    font-weight: 800;
}

.showcase-stat-pill .stat-label {
    color: var(--gray-500);
    font-weight: 500;
}

.showcase-dark .showcase-stat-pill {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.showcase-dark .showcase-stat-pill .stat-value {
    color: var(--primary);
}

.showcase-dark .showcase-stat-pill .stat-label {
    color: #94a3b8;
}

/* -- Product Model Grid -- */
.showcase-models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: 1.5rem;
}

.showcase-model-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    transition: transform var(--ease-slow), box-shadow var(--ease-slow), border-color var(--ease-slow);
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.showcase-model-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(229, 90, 44, 0.35);
}

.showcase-dark .showcase-model-card {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

.showcase-dark .showcase-model-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(229, 90, 44, 0.5);
}

.showcase-model-card .smc-badge {
    position: absolute;
    top: 0;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 0 0 8px 8px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.showcase-model-card .smc-icon {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.showcase-model-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.3rem;
    color: var(--dark);
}

.showcase-dark .showcase-model-card h4 {
    color: var(--white);
}

.showcase-model-card .smc-subtitle {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
}

.showcase-dark .showcase-model-card .smc-subtitle {
    color: #94a3b8;
}

.showcase-model-card .smc-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.2rem;
    flex-grow: 1;
}

.showcase-model-card .smc-specs .spec-chip {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    padding: 3px 10px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gray-600);
}

.showcase-dark .showcase-model-card .smc-specs .spec-chip {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
}

.showcase-model-card .smc-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--ease-base);
    margin-top: auto;
}

.showcase-model-card:hover .smc-link {
    gap: 10px;
}

/* -- Showcase CTA row at bottom of each section -- */
.showcase-cta-row {
    text-align: center;
    margin-top: 2.5rem;
}

.showcase-cta-row a {
    font-size: 0.92rem;
}

/* -- Products CTA Section -- */
.products-cta {
    background: var(--primary-light);
    padding: 80px 0;
}

.products-cta-inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    align-items: center;
}

.products-cta-copy h2 {
    color: var(--dark);
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}

.products-cta-copy p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.8;
}

.products-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-start;
}

.products-cta-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.products-cta-contact span {
    color: var(--gray-600);
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.products-cta-contact span i {
    color: var(--primary);
}

/* ===== Products Page Responsive ===== */
@media (max-width: 1100px) {
    .showcase-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 950px) {
    .products-hero {
        padding: 48px 0 64px;
    }

    .products-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .products-hero-copy {
        text-align: center;
    }

    .products-hero-copy p {
        max-width: 100%;
    }

    .products-hero-stats {
        justify-content: center;
    }

    .products-hero-actions {
        justify-content: center;
    }

    .products-hero-visual {
        max-width: 520px;
        margin: 0 auto;
    }

    .products-cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .products-cta-actions {
        align-items: center;
    }

    .products-cta-contact {
        justify-content: center;
    }

    .product-category-nav {
        top: 60px;
    }
}

@media (max-width: 600px) {
    .products-hero-copy h1 {
        font-size: 2rem;
    }

    .products-hero-stats {
        gap: 0.6rem;
    }

    .products-hero-stats .hero-stat-badge {
        padding: 8px 12px;
        min-width: 80px;
    }

    .products-hero-stats .hero-stat-badge .value {
        font-size: 1rem;
    }

    .products-hero-actions .btn-primary,
    .products-hero-actions .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .products-visual-stage {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .product-cat-tab {
        padding: 12px 16px;
        font-size: 0.82rem;
    }

    .product-cat-tab span {
        display: none;
    }

    .product-cat-tab i {
        font-size: 1.2rem;
    }

    .showcase-models-grid {
        grid-template-columns: 1fr;
    }

    .showcase-header-left h2 {
        font-size: 1.6rem;
    }

    .products-cta-copy h2 {
        font-size: 1.7rem;
    }

    .products-cta-inner .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

/* ===== 22. LINEAR-STYLE PRODUCT SHOWCASE (Light Theme) ===== */

/* -- Hero -- */
.linear-hero {
    position: relative;
    padding: 140px 0 60px;
    background:
        radial-gradient(circle at 10% 20%, rgba(229, 90, 44, 0.1), transparent 28%),
        linear-gradient(135deg, #fff8f4 0%, #ffffff 45%, #f8fafc 100%);
    overflow: hidden;
    text-align: center;
}

.linear-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(229, 90, 44, 0.1), transparent),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(229, 90, 44, 0.04), transparent);
    pointer-events: none;
}

.linear-hero-inner {
    position: relative;
    z-index: 1;
}

.linear-hero-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(229, 90, 44, 0.15);
}

.linear-hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    color: var(--dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.linear-hero p {
    color: var(--gray-600);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.linear-hero-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), rgba(229, 90, 44, 0.2));
    margin: 0 auto;
    border-radius: 1px;
}

/* -- Products Section -- */
.linear-products {
    background: var(--white);
    padding-bottom: 40px;
}

/* -- Section Label -- */
.linear-section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 40px 0 8px;
    color: var(--gray-500);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.linear-section-label i {
    color: var(--primary);
    font-size: 0.9rem;
    opacity: 0.7;
}

.linear-section-label-light {
    color: var(--gray-500);
}

/* -- Showcase Block -- */
.linear-showcase {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 20px 0;
    transition: background 0.3s ease;
}

.linear-showcase:hover {
    background: rgba(229, 90, 44, 0.02);
}

/* -- Showcase Grid -- */
.linear-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 40px 0;
}

/* -- Visual (Image) -- */
.linear-showcase-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.linear-glow-card {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.linear-glow-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(229, 90, 44, 0.3), rgba(229, 90, 44, 0.05), rgba(229, 90, 44, 0.15));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.linear-showcase:hover .linear-glow-card::before {
    opacity: 1;
}

.linear-showcase:hover .linear-glow-card {
    box-shadow: 0 0 40px rgba(229, 90, 44, 0.12), 0 0 80px rgba(229, 90, 44, 0.06), var(--shadow-md);
    border-color: rgba(229, 90, 44, 0.25);
    transform: scale(1.02);
}

.linear-glow-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 18px;
    background: var(--white);
    display: block;
    transition: transform 0.4s ease;
}

.linear-showcase:hover .linear-glow-card img {
    transform: scale(1.05);
}

/* -- Info (Text) -- */
.linear-showcase-info {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.linear-showcase-badge {
    display: inline-block;
    background: rgba(229, 90, 44, 0.12);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: fit-content;
    border: 1px solid rgba(229, 90, 44, 0.2);
}

.linear-showcase-info h2 {
    font-size: 1.8rem;
    color: var(--dark);
    margin: 0;
    letter-spacing: -0.01em;
}

.linear-showcase-info p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
}

.linear-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    transition: gap 0.25s ease;
}

.linear-showcase:hover .linear-link {
    gap: 12px;
}

/* -- Right layout: reverse grid -- */
.linear-showcase-right {
    direction: ltr;
}

.linear-showcase-right .linear-showcase-info {
    order: -1;
}

/* -- Animation -- */
.linear-anim {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.linear-visible {
    opacity: 1;
    transform: translateY(0);
}

/* -- Accessories Section -- */
.linear-accessories {
    background: var(--gray-50);
    padding: 60px 0 80px;
    border-top: 1px solid var(--gray-200);
}

.linear-accessories-desc {
    color: var(--gray-500);
    font-size: 0.92rem;
    margin: -0.5rem 0 2rem;
}

.linear-acc-scroll {
    overflow: hidden;
    position: relative;
}

.linear-acc-scroll::before,
.linear-acc-scroll::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}
.linear-acc-scroll::before {
    left: 0;
    background: linear-gradient(90deg, var(--gray-50), transparent);
}
.linear-acc-scroll::after {
    right: 0;
    background: linear-gradient(-90deg, var(--gray-50), transparent);
}

.linear-acc-scroll::-webkit-scrollbar {
    display: none;
}

.linear-acc-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: acc-marquee 30s linear infinite;
}

.linear-acc-scroll:hover .linear-acc-track {
    animation-play-state: paused;
}

@keyframes acc-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 8px)); }
}

.linear-acc-card {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    border-radius: 14px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    cursor: pointer;
}

.linear-acc-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.75);
    transition: all 0.3s ease;
}

.linear-acc-card:hover {
    border-color: rgba(229, 90, 44, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.linear-acc-card:hover img {
    filter: saturate(1);
    transform: scale(1.08);
}

/* -- Linear Responsive -- */
@media (max-width: 950px) {
    .linear-hero {
        padding: 60px 0 48px;
    }

    .linear-showcase-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 28px 0;
    }

    .linear-showcase-info {
        align-items: center;
    }

    .linear-showcase-right .linear-showcase-info {
        order: 0;
    }

    .linear-glow-card {
        max-width: 360px;
        width: 80%;
        margin: 0 auto;
    }

    .linear-showcase-info h2 {
        font-size: 1.5rem;
    }

    .linear-acc-card {
        width: 120px;
        height: 120px;
    }

    .linear-products {
        padding-bottom: 24px;
    }
}

@media (max-width: 600px) {
    .linear-hero {
        padding: 40px 0 32px;
    }

    .linear-hero h1 {
        font-size: 1.8rem;
    }

    .linear-hero p {
        font-size: 0.92rem;
        line-height: 1.7;
        padding: 0 8px;
    }

    .linear-showcase-grid {
        gap: 1.2rem;
        padding: 16px 0;
    }

    .linear-glow-card {
        max-width: 100%;
        width: 85%;
        border-radius: 16px;
    }

    .linear-glow-card::before {
        border-radius: 16px;
    }

    .linear-showcase-info h2 {
        font-size: 1.25rem;
    }

    .linear-showcase-info p {
        font-size: 0.85rem;
        line-height: 1.7;
    }

    .linear-link {
        font-size: 0.85rem;
    }

    .linear-section-label {
        font-size: 0.72rem;
        padding: 24px 0 4px;
    }

    .linear-acc-card {
        width: 100px;
        height: 100px;
        border-radius: 12px;
    }

    .linear-acc-track {
        gap: 12px;
    }

    .linear-accessories {
        padding: 40px 0 56px;
    }

    .linear-accessories-desc {
        font-size: 0.85rem;
    }

    .products-cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .products-cta-actions {
        align-items: center;
    }

    .products-cta-copy h2 {
        font-size: 1.6rem;
    }

    .products-cta-copy p {
        font-size: 0.92rem;
    }
}

/* ===== 23. IMAGE PLACEHOLDER REPLACEMENTS ===== */
/* Generic image container — replaces icon placeholders */
.industry-img,
.industry-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    display: block;
}

.industry-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 14px;
    margin-bottom: 1rem;
}

.industry-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.industry-tile:hover .industry-img img {
    transform: scale(1.05);
}

/* Solution card visual — replaces icon with image */
.sol-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Industries page card image */
.ind-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 14px 14px 0 0;
}

.ind-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.ind-card:hover .ind-card-img img {
    transform: scale(1.05);
}

/* Solution detail page hero visual image */
.sol-hero-img {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.sol-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* -- Accessibility: reduced motion -- */
@media (prefers-reduced-motion: reduce) {
    .linear-anim {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .linear-glow-card,
    .linear-glow-card img,
    .linear-acc-card,
    .linear-acc-card img,
    .product-card,
    .feature-card,
    .model-card,
    .overview-card,
    .solution-item,
    .industry-tile,
    .pv-card,
    .mini-sol-card,
    .news-card,
    .resource-card,
    .scenario-item,
    .strength-item,
    .showcase-model-card,
    .search-result-card,
    .payment-mode-card,
    .contact-card,
    .info-card,
    .faq-card,
    .sol-card {
        transition: none;
    }
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .carousel-slide {
        animation: none;
        opacity: 0;
    }
    .carousel-slide:first-child {
        opacity: 1;
    }
    .industry-grid-track,
    .marquee-content,
    .linear-acc-track,
    .sol-showcase,
    .marquee-track {
        animation: none;
    }
}

/* -- Hover effects only on devices that support hover -- */
@media (hover: none) {
    .product-card:hover,
    .feature-card:hover,
    .model-card:hover,
    .overview-card:hover,
    .solution-item:hover,
    .industry-tile:hover,
    .pv-card:hover,
    .mini-sol-card:hover,
    .news-card:hover,
    .resource-card:hover,
    .scenario-item:hover,
    .strength-item:hover,
    .showcase-model-card:hover,
    .search-result-card:hover,
    .payment-mode-card:hover,
    .sol-card:hover {
        transform: none;
        box-shadow: none;
    }
    .btn-primary:hover,
    .btn-dark:hover {
        transform: none;
    }
}


/* Solution product card images */
.v-pv img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    inset: 0;
    opacity: 0.85;
    transition: opacity 0.3s ease;
    padding: 18px;
    background: #fff;
}
.v-pc:hover .v-pv img {
    opacity: 1;
}


/* ===== FINDER HORIZONTAL RESULT ===== */
.finder-horizontal {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0.8rem 0;
    box-shadow: none;
    animation: fadeInUp 0.3s ease;
}

.fh-country {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.fh-flag {
    font-size: 2.8rem;
    line-height: 1;
}

.fh-name {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--dark);
    white-space: nowrap;
}

.fh-divider {
    width: 1px;
    height: 28px;
    background: var(--gray-200);
    flex-shrink: 0;
}

.fh-section {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.fh-label {
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--gray-500);
    white-space: nowrap;
    flex-shrink: 0;
}

.fh-tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.fh-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.76rem;
    font-weight: 700;
    white-space: nowrap;
}

.fh-scenes {
    font-size: 0.82rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.fh-cta {
    margin-left: auto;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .finder-horizontal {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        padding: 1.2rem;
    }
    .fh-divider {
        width: 100%;
        height: 1px;
    }
    .fh-cta {
        margin-left: 0;
        width: 100%;
    }
    .fh-cta .btn-sm {
        width: 100%;
        justify-content: center;
    }
}

/* ===== 24. UNIFIED SCENARIO CARD IMAGE DISPLAY ===== */
/* Solution scenario cards use a visual-first image/title layout. */
.industry-tile,
.v-scenarios .v-sc {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 16px !important;
}

.v-scenarios .v-sg {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 1.5rem !important;
    align-items: stretch;
}

.v-scenarios .v-sc {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 100%;
    padding: 0 !important;
    text-align: center !important;
    overflow: hidden;
    box-shadow: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.v-scenarios .v-sc:hover {
    border-color: rgba(229, 90, 44, 0.25) !important;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08) !important;
    transform: translateY(-4px) !important;
}

.v-scenarios .v-sc::after {
    height: 3px !important;
}

.industry-img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 10 !important;
    margin: 0 0 1rem !important;
    padding: 10px;
    background: linear-gradient(135deg, #FFF8F4, #F8FAFC);
    border: 1px solid var(--gray-100);
    border-radius: 12px !important;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center;
    border-radius: 8px;
    display: block;
    transform: none !important;
}

.v-scenarios .v-sc .sc-img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 10 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: var(--gray-50) !important;
    border: 0 !important;
    border-radius: 0 !important;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v-scenarios .v-sc .sc-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center;
    border-radius: 0 !important;
    display: block;
    transform: none !important;
}

.sol-card-visual {
    padding: 10px;
    background: linear-gradient(135deg, #FFF8F4, #F8FAFC) !important;
}

.sol-card-visual img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center;
    border-radius: 12px;
    transform: none !important;
}

.v-scenarios .v-sc h3 {
    color: var(--dark) !important;
    font-size: 1rem !important;
    font-weight: 800 !important;
    line-height: 1.35 !important;
    margin: 0 !important;
    padding: 1rem 1.15rem 1.15rem !important;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center !important;
    width: 100%;
}

.v-scenarios .v-sc p {
    display: none !important;
}

.industry-tile .industry-tile-content {
    padding: 0 !important;
}

.industry-tile:hover .industry-img img,
.v-scenarios .v-sc:hover .sc-img img {
    transform: none !important;
}

@media (max-width: 1024px) {
    .v-scenarios .v-sg {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 640px) {
    .v-scenarios .v-sg,
    .v-sg {
        grid-template-columns: 1fr !important;
    }
    .v-scenarios .v-sc {
        padding: 0 !important;
    }
    .v-scenarios .v-sc .sc-img {
        aspect-ratio: 16 / 10 !important;
    }
    .v-scenarios .v-sc h3 {
        min-height: 54px;
        padding: 0.9rem 1rem 1rem !important;
    }
}

.home-industries .industry-grid-track {
    animation: industryScroll 30s linear infinite !important;
}

.home-industries .industry-tile {
    background: var(--white) !important;
    padding: 0 !important;
    overflow: hidden !important;
    flex: 0 0 280px;
    min-width: 280px;
    border-radius: 16px !important;
}

.home-industries .industry-img {
    aspect-ratio: 16 / 10 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: var(--gray-50) !important;
}

.home-industries .industry-img img {
    border-radius: 0 !important;
    object-fit: cover !important;
    object-position: center center !important;
}

.home-industries .industry-tile-content {
    padding: 1rem 1.15rem 1.15rem !important;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.home-industries .industry-tile h3 {
    margin: 0 !important;
    width: 100%;
    font-size: 1rem !important;
    line-height: 1.35 !important;
}

.home-industries .industry-tile p {
    display: none !important;
}

@media (max-width: 640px) {
    .home-industries .industry-tile {
        flex-basis: 240px;
        min-width: 240px;
    }
}

.linear-accessories .linear-acc-track {
    animation: acc-marquee 30s linear infinite !important;
}

/* ===== Product Model Detail Pages ===== */
body[data-page="model-detail"] {
    background: var(--white);
}

.model-detail-hero {
    padding: 118px 0 64px;
    background: linear-gradient(135deg, #fff7f1 0%, #ffffff 54%, #f7fafc 100%);
}

.model-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.model-detail-grid > * {
    min-width: 0;
}

.model-detail-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    align-items: stretch;
}

.model-gallery-frame {
    margin: 0;
    min-width: 0;
}

.model-gallery-frame.is-primary {
    grid-column: 1 / -1;
}

.model-gallery-frame img {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: clamp(1rem, 3vw, 2rem);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

.model-gallery-frame:not(.is-primary) img {
    aspect-ratio: 1 / 1;
    padding: clamp(0.75rem, 2vw, 1.25rem);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

.model-detail-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 0.75rem;
}

.model-detail-copy h1 {
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    line-height: 0.95;
    margin: 0 0 1rem;
    color: var(--dark);
}

.model-detail-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 750;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.model-detail-summary {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 1rem;
    max-width: 640px;
}

.model-feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    padding: 0;
    margin: 1.5rem 0;
}

.model-feature-list li {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    padding: 0.8rem 0.9rem;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    color: var(--gray-700);
    font-weight: 650;
    line-height: 1.45;
}

.model-feature-list i {
    color: var(--primary);
    margin-top: 0.2rem;
}

.model-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.model-detail-section {
    padding: 72px 0;
}

.model-detail-section .section-header {
    text-align: center;
}

.model-detail-section .section-header p {
    margin-left: auto;
    margin-right: auto;
}

.model-detail-muted {
    background: var(--gray-50);
}

.model-spec-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
    width: min(100%, 900px);
    margin-inline: auto;
}

.model-spec-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: clamp(1.35rem, 2.5vw, 2rem);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.07);
    min-width: 0;
}

.model-spec-card h3 {
    margin: 0 0 1rem;
    color: var(--dark);
    font-size: 1.1rem;
}

.model-spec-card table {
    width: 100%;
    border-collapse: collapse;
}

.model-spec-card th,
.model-spec-card td {
    text-align: left;
    border-top: 1px solid var(--gray-100);
    padding: 0.78rem 0;
    vertical-align: top;
    line-height: 1.55;
}

.model-spec-card th {
    width: 32%;
    color: var(--gray-700);
    font-weight: 800;
}

.model-spec-card td {
    color: var(--gray-600);
}

.model-application-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.model-application-tags span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--gray-200);
    background: #fff;
    color: var(--gray-700);
    font-weight: 750;
}

.model-application-tags i {
    color: var(--primary);
}

.model-original-detail {
    display: grid;
    justify-items: center;
    gap: 1.5rem;
}

.model-original-frame {
    display: grid;
    justify-items: center;
    gap: 0.65rem;
    width: min(100%, 850px);
    margin: 0;
}

.model-original-frame span {
    color: var(--gray-500);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.model-original-detail img,
.model-original-frame img {
    width: min(100%, 750px);
    max-width: 100%;
    height: auto;
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
    background: #fff;
}

.model-related-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.model-related-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 1rem;
    text-decoration: none;
    color: var(--dark);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    min-width: 0;
    box-sizing: border-box;
    text-align: center;
}

.model-related-card:hover {
    transform: translateY(-4px);
    border-color: rgba(229, 90, 44, 0.35);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.model-related-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background: var(--gray-50);
    border-radius: 10px;
    padding: 0.75rem;
}

.model-related-card span {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 800;
}

.model-related-card strong {
    font-size: 1.05rem;
}

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

    .model-detail-gallery {
        width: min(100%, 520px);
        justify-self: center;
    }

    .model-detail-hero {
        padding-top: 96px;
    }

    .model-feature-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .model-detail-gallery {
        width: calc(100vw - 48px);
        max-width: 100%;
        justify-self: center;
        overflow: hidden;
    }

    .model-gallery-frame img {
        display: block;
        width: 100%;
        padding: 0.75rem;
    }

    .model-detail-section {
        padding: 52px 0;
    }

    .model-spec-card th,
    .model-spec-card td {
        display: block;
        width: 100%;
        padding: 0.55rem 0;
    }

    .model-spec-card td {
        border-top: 0;
        padding-top: 0;
    }
}
