﻿/* ============================================
   UNISPOT - Kiosk Manufacturer Official Website
   Main Stylesheet
   ============================================ */

/* --- Font Face --- */
@font-face {
    font-family: 'Alibaba PuHuiTi';
    src: url('../fonts/AlibabaPuHuiTi-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Alibaba PuHuiTi';
    src: url('../fonts/AlibabaPuHuiTi-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Alibaba PuHuiTi';
    src: url('../fonts/AlibabaPuHuiTi-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* --- CSS Variables --- */
:root {
    --primary: #0066CC;
    --primary-dark: #004B99;
    --primary-light: #E8F4FD;
    --accent: #00A0E9;
    --accent-light: #E0F7FF;
    --secondary: #00B4D8;
    --dark: #1A1A2E;
    --dark-secondary: #16213E;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --bg: #FFFFFF;
    --bg-light: #F5F7FA;
    --bg-gray: #F0F2F5;
    --border: #E5E7EB;
    --border-light: #F0F0F0;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --white: #FFFFFF;
    --black: #000000;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --radius-sm: 4px;
    --radius: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --max-width: 1400px;
    --header-height: 88px;
    --transition: all 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Alibaba PuHuiTi', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}
a:hover {
    color: var(--primary-dark);
}

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

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

/* --- Utility Classes --- */
.section-padding {
    padding: 80px 0;
}
.section-padding-sm {
    padding: 48px 0;
}

.bg-light {
    background: var(--bg-light);
}
.bg-white {
    background: var(--white);
}

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

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.3;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.5;
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    line-height: 1.4;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}
.btn-white:hover {
    background: var(--bg-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-lg {
    padding: 14px 36px;
    font-size: 1rem;
}
.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid #CCE22B;
    height: var(--header-height);
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.logo {
    flex-shrink: 0;
}
.logo img,
.logo-svg {
    height: 40px;
    width: auto;
}

/* Main Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    color: #1D1D1F;
    font-size: 1.05rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    transition: var(--transition);
}
.nav-link:hover,
.nav-link.active {
    color: #172072;
    background: transparent;
}
.nav-link .arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}
.nav-link .arrow svg {
    width: 14px;
    height: 14px;
    stroke-width: 2.5;
}
.nav-item:hover .nav-link .arrow {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    border: 0.2px solid rgba(23, 32, 114, 0.30);
}
.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
}

.dropdown-link {
    display: block;
    padding: 10px 20px;
    margin: 0 5px;
    border-radius: 5px;
    color: var(--text);
    font-size: 0.9rem;
    transition: var(--transition);
}
.dropdown-link:hover {
    background: #CCE22B;
    color: #172072;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-switch {
    position: relative;
    display: flex;
    align-items: center;
}

/* Language Toggle Button */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 4px;
    border: none;
    background: transparent;
    color: #1D1D1F;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.lang-toggle:hover {
    color: #172072;
}
.lang-arrow {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
    margin-top: 1px;
}
.lang-switch:hover .lang-arrow {
    transform: rotate(180deg);
}

/* Language Dropdown */
.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 4px;
    background: var(--white);
    border: 0.2px solid rgba(23, 32, 114, 0.30);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    min-width: 140px;
    padding: 4px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: var(--transition);
    z-index: 100;
}
.lang-switch:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
}
.lang-dropdown .lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    margin: 0 5px;
    border-radius: 5px;
    color: #1D1D1F;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    white-space: nowrap;
}
.lang-dropdown .lang-option:hover {
    background: #CCE22B;
    color: #172072;
}
.lang-flag {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}

/* Contact Us button in nav */
.nav-cta {
    margin-left: 8px;
    background: #FFFFFF;
    color: #172072;
    border: 2px solid #172072;
    border-radius: 24px;
    font-weight: 600;
    padding: 10px 22px;
    font-size: 0.95rem;
}
.nav-cta:hover {
    background: #172072;
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================
   HERO SLIDER (Linksys-style)
   ========================================== */
.hero-slider {
    position: relative;
    background: #172072; /* fallback — matches brand color */
    overflow: hidden;
    max-width: 1920px;
    margin: 0 auto;
}

/* Slide Background Image */
.hero-slide-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    display: block;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1920 / 700;
}
.hero-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

/* Slide Background Video */
.hero-slide-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark overlay for text readability on bright backgrounds */
.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1;
    pointer-events: none;
}

.hero-slide-inner {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: flex-start;
    padding: 60px 40px;
    margin: 0;
    width: 100%;
    max-width: var(--max-width);
    position: relative;
    z-index: 2;
    height: 100%;
}

/* Slide Content */
.hero-slide-content {
    max-width: 580px;
    text-align: left;
}
.hero-slide-content h2 {
    font-size: 2.75rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero-slide-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin-bottom: 30px;
}
.hero-buttons .btn-primary {
    background: #ffffff;
    color: #172072;
    border-radius: 1.5rem;
}
.hero-buttons .btn-primary:hover {
    background: #cce22b;
    color: #172072;
}
.hero-buttons .btn-outline {
    background: transparent;
    color: #ffffff;
    border: 0.125rem solid #ffffff;
    border-radius: 1.5rem;
}
.hero-buttons .btn-outline:hover {
    background: #ffffff;
    color: #172072;
}

/* Slide Image */
.hero-slide-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.hero-slide-image img {
    max-width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    z-index: 10;
    transition: all 0.3s ease;
    padding: 0;
}
.hero-arrow:hover {
    color: var(--primary);
}
.hero-arrow-left {
    left: 24px;
}
.hero-arrow-right {
    right: 24px;
}

/* Controls: Progress Bars */
.hero-controls {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* Rectangular Progress Bars */
.hero-bars {
    display: flex;
    gap: 8px;
}

.hero-bar {
    width: 120px;
    height: 6px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: background 0.3s ease;
}
.hero-bar:hover {
    background: rgba(255, 255, 255, 0.5);
}

.hero-bar-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: #FFFFFF;
    border-radius: 6px;
}

/* Active bar: fill animates */
.hero-bar.active .hero-bar-fill {
    transition: width 5s linear;
    width: 100%;
}

/* Completed bars (before current): stay full */
.hero-bar.done .hero-bar-fill {
    width: 100%;
    transition: none;
    background: rgba(255, 255, 255, 0.8);
}
.hero-bar.done {
    background: rgba(255, 255, 255, 0.5);
}

/* Future bars: empty */
.hero-bar:not(.active):not(.done) .hero-bar-fill {
    width: 0%;
    transition: none;
}

/* Hero Mini (Inner Pages) */
.hero-mini {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}
.hero-mini h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.hero-mini .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}
.hero-mini .breadcrumb a {
    color: rgba(255,255,255,0.7);
}
.hero-mini .breadcrumb a:hover {
    color: var(--white);
}
.hero-mini .breadcrumb .sep {
    color: rgba(255,255,255,0.4);
}

/* Hero Mini — tall variant for overlap layouts */
.hero-mini-tall {
    padding: 80px 0 160px;
}

/* Hero Contact (custom banner) */
.hero-contact {
    background-color: #172072;
    background-image:
        /* radial glow top-right */
        radial-gradient(ellipse at 75% 30%, rgba(204,226,43,0.06) 0%, transparent 55%),
        /* radial glow bottom-left */
        radial-gradient(ellipse at 20% 80%, rgba(0,160,233,0.05) 0%, transparent 50%),
        /* large subtle circles */
        radial-gradient(circle at 85% 15%, rgba(255,255,255,0.03) 0%, transparent 30%),
        radial-gradient(circle at 10% 70%, rgba(255,255,255,0.02) 0%, transparent 25%),
        /* dot grid */
        radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size:
        100% 100%,
        100% 100%,
        100% 100%,
        100% 100%,
        20px 20px;
    background-position:
        0 0,
        0 0,
        0 0,
        0 0,
        10px 10px;
    color: #ffffff;
    height: 380px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        /* horizontal scan lines */
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.015) 2px, rgba(255,255,255,0.015) 4px),
        /* diagonal tech lines */
        linear-gradient(135deg, transparent 0%, transparent 49.5%, rgba(204,226,43,0.04) 49.5%, rgba(204,226,43,0.04) 50.5%, transparent 50.5%),
        linear-gradient(135deg, transparent 0%, transparent 48%, rgba(0,160,233,0.03) 48%, rgba(0,160,233,0.03) 48.5%, transparent 48.5%),
        linear-gradient(45deg, transparent 0%, transparent 47%, rgba(204,226,43,0.03) 47%, rgba(204,226,43,0.03) 47.5%, transparent 47.5%);
    pointer-events: none;
    z-index: 0;
}
.hero-contact .container {
    position: relative;
    z-index: 1;
}
.hero-contact .container {
    width: 100%;
}
.hero-contact-content {
    text-align: left;
    max-width: 680px;
    margin-left: 0;
    position: relative;
    z-index: 3;
}
.hero-contact-content h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 14px;
    max-width: 30rem;
}
.hero-contact-content p {
    font-size: 1.02rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 30rem;
}
.btn-contact-sales {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.375rem;
    background: #ffffff;
    color: #172072;
    border-radius: 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    z-index: 10;
    margin-left: 0;
}
.btn-contact-sales:hover,
.btn-contact-sales:focus,
.btn-contact-sales:active {
    background: #cce22b;
    color: #172072;
    border-color: #cce22b;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(23, 32, 114, 0.18);
}

/* ==========================================
   SECTION HEADERS
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}
.section-header p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}
.section-header-left {
    text-align: left;
}
.section-header-left p {
    margin: 0;
}
.section-header-left h2 {
    font-size: 1.75rem;
    color: #172072;
}
}

/* ==========================================
   FEATURES / STATS
   ========================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.feature-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 28px;
    text-align: left;
    padding: 32px 36px;
    border-radius: 1.25rem;
    background: #ffffff;
    border: 1px solid #e8e8ed;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.feature-card:hover {
    border-color: transparent;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.feature-icon {
    width: 64px;
    min-width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(23,32,114,0.06);
    border-radius: 50%;
    flex-shrink: 0;
}
.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #172072;
}
.feature-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Stats */
.stats-section {
    padding: 60px 0;
    background: var(--primary);
    color: var(--white);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.stat-item .stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}
.index-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.index-stat-card {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #e8e8ed;
    border-radius: 1.25rem;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    padding: 24px;
}
.index-stat-number {
    font-size: 70px;
    font-weight: 700;
    color: var(--stat-color, #172072);
    margin-bottom: 8px;
    line-height: 1.1;
}
.index-stat-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1D1D1F;
    text-transform: uppercase;
    line-height: 1.3;
}
.index-stat-suffix {
    font-size: 24px;
}

/* ==========================================
   PRODUCT CARDS
   ========================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.product-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--bg-gray);
}
.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-card-image img {
    transform: scale(1.05);
}
.product-card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}
.product-card-body {
    padding: 20px;
}
.product-card-body h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}
.product-card-body p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 12px;
}
.product-card-body .btn {
    margin-top: 8px;
}

/* Solutions Page */
.solutions-hero {
    background-color: #172072;
    background-image:
        radial-gradient(ellipse at 30% 50%, rgba(0,160,233,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(204,226,43,0.05) 0%, transparent 50%),
        repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.015) 39px, rgba(255,255,255,0.015) 40px),
        repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.01) 39px, rgba(255,255,255,0.01) 40px);
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.solutions-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 25%, rgba(204,226,43,0.15) 0%, transparent 18%),
        radial-gradient(circle at 15% 70%, rgba(0,160,233,0.15) 0%, transparent 22%),
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.02) 2px, rgba(255,255,255,0.02) 3px),
        linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.04) 48%, rgba(255,255,255,0.04) 52%, transparent 52%);
    pointer-events: none;
    z-index: 0;
}
.solutions-hero .container {
    position: relative;
    z-index: 1;
}
.solutions-hero-orb {
    position: absolute;
    right: -100px;
    top: -80px;
    width: 600px;
    height: 600px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
}
.solutions-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}
.solutions-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}
.solution-card-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: transparent;
    border-radius: 1.25rem;
    overflow: hidden;
    padding: 48px 0;
}
.solution-card-full-image {
    border-radius: 0.75rem;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.solution-card-full-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.solution-card-full-body h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #172072;
    margin-bottom: 16px;
}
.solution-card-full-body p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 12px;
}
.solution-sub-list {
    margin: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.solution-sub-list li {
    /* no border */
}
.solution-sub-list a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 0;
    color: #1d1d1f;
    font-size: 1.25rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}
.solution-sub-list a:hover {
    color: #172072;
}
.solution-sub-list a svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #000000;
    transition: transform 0.2s ease;
}
.solution-sub-list a:hover svg {
    transform: translateX(4px);
    color: #172072;
}
.solution-card-hero {
    position: relative;
    width: 82.5rem;
    max-width: 100%;
    height: 31.25rem;
    border-radius: 1.25rem;
    overflow: hidden;
    margin: 0 auto;
}
.solution-card-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.solution-card-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
    z-index: 1;
}
.solution-card-hero-right::after {
    background: linear-gradient(270deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}
.solution-card-hero-content {
    position: relative;
    z-index: 2;
    padding: 64px;
    max-width: 560px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.solution-card-hero-content-right {
    margin-left: auto;
    text-align: left;
}
.solution-card-hero-content-right .product-view-btn {
    align-self: flex-start;
}
.solution-card-hero .product-view-btn {
    background: #ffffff;
    color: #172072;
}
.solution-card-hero .product-view-btn:hover {
    background: #cce22b;
    color: #172072;
}
.solution-card-hero-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}
.solution-card-hero-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 24px;
}
.solution-card-hero-content .solution-sub-list a {
    color: rgba(255,255,255,0.85);
}
.solution-card-hero-content .solution-sub-list a:hover {
    color: #ffffff;
}
.solution-card-hero-content .solution-sub-list a svg {
    color: rgba(255,255,255,0.6);
}
.solution-card-hero-content .solution-sub-list a:hover svg {
    color: #ffffff;
}
.solution-card-full-body .btn {
    margin-top: 16px;
}
.solution-gaming-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}
.solution-gaming-text {
    height: 590px;
    display: flex;
    flex-direction: column;
}
.solution-gaming-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
}
.solution-gaming-cards {
    display: grid;
    grid-template-columns: 307.5px 307.5px;
    grid-template-rows: 1fr 1fr;
    gap: 30px;
    justify-content: center;
    flex: 1;
}
.solution-gaming-card {
    background: rgb(245, 246, 250);
    border-radius: 0.75rem;
    padding: 20px 35px 0 35px;
    width: 307.5px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
}
.solution-gaming-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #172072;
    margin: 0 0 15px 0;
}
.solution-card-sub {
    font-size: 20px;
    font-weight: 400;
}
.solution-gaming-card p {
    font-size: 18px;
    color: #000000;
    line-height: 1.5;
    margin: 0;
}
.solution-gaming-image {
    border-radius: 1.25rem;
    overflow: hidden;
    width: 645px;
    height: 590px;
}
.solution-gaming-image img,
.solution-gaming-image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.solution-card-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}
.solution-card-split-image {
    width: 645px;
    height: 590px;
    max-width: 100%;
    border-radius: 1.25rem;
    overflow: hidden;
    flex-shrink: 0;
}
.solution-card-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.solution-card-split-body {
    width: 645px;
    height: 590px;
    max-width: 100%;
    border-radius: 1.25rem;
    background: #f5f5f7;
    padding: 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
}
.solution-card-split-body h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #172072;
    margin-bottom: 20px;
}
.solution-card-split-body p {
    font-size: 18px;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 24px;
}
.solution-card-split-body .btn {
    align-self: flex-start;
    margin-top: 8px;
}

/* ==========================================
   SOLUTION CARDS
   ========================================== */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.solution-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.solution-card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--bg-gray);
}
.solution-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.solution-card:hover .solution-card-image img {
    transform: scale(1.05);
}
.solution-card-body {
    padding: 24px;
}
.solution-card-body h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}
.solution-card-body p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ==========================================
   SERVICE CARDS (Hardware/Software/Support)
   ========================================== */
/* ==========================================
   PRODUCTS PAGE
   ========================================== */
.products-hero-banner {
    background-color: #f5f5f7;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(23,32,114,0.025) 40px, rgba(23,32,114,0.025) 41px),
        repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(23,32,114,0.025) 40px, rgba(23,32,114,0.025) 41px);
    text-align: center;
    padding: 80px 0;
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.products-hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.3) 0%, transparent 8%),
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.2) 0%, transparent 6%);
    pointer-events: none;
    z-index: 0;
}
.products-hero-banner .container {
    position: relative;
    z-index: 1;
}
.detail-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 56px;
    transition: color 0.2s ease;
}
.detail-back-link:hover {
    color: #172072;
}
.detail-hero-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: #F5F5F7;
    border-radius: 1.25rem;
    overflow: visible;
    max-width: 1320px;
    height: 400px;
    margin: 0 auto;
}
.detail-hero-text {
    padding: 80px 0 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.detail-hero-text h1 {
    font-size: 38px;
    font-weight: 700;
    color: #172072;
    margin-bottom: 20px;
}
.detail-hero-text p {
    font-size: 1.1rem;
    color: #1D1D1F;
    line-height: 1.8;
}
.detail-hero-image {
    padding: 0 80px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}
.detail-hero-image img {
    width: 100%;
    max-height: 460px;
    object-fit: contain;
    margin-top: -30px;
}
.detail-features-label {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 4px;
}
.detail-features-grid {
    display: grid;
    grid-template-columns: 420px 420px 420px;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}
.detail-feature-card {
    background: #F5F5F7;
    border-radius: 1.25rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.detail-feature-wide {
    height: 420px;
    grid-column: 1 / 3;
    flex-direction: row;
}
.detail-feature-tall {
    height: 870px;
    grid-row: 1 / 3;
    grid-column: 3;
}
.detail-feature-text-only {
    height: 420px;
    grid-column: 1;
}
.detail-feature-image-only {
    height: 420px;
    grid-column: 2;
}
.detail-feature-text-only .detail-feature-card-text {
    height: 100%;
    padding: 48px;
}
.detail-feature-card-image {
    flex: 1;
    overflow: hidden;
}
.detail-feature-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.detail-feature-wide .detail-feature-card-image {
    width: 50%;
    flex: none;
    height: 100%;
}
.detail-feature-wide .detail-feature-card-text {
    width: 50%;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.detail-feature-card-text {
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}
.detail-feature-tall .detail-feature-card-image {
    height: 55%;
    flex: none;
}
.detail-feature-tall .detail-feature-card-text {
    flex: 1;
}
.detail-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
    max-width: 1320px;
    margin: 0 auto;
}
.detail-specs-group {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 32px;
    align-items: flex-start;
    padding: 30px 0;
    border-bottom: 1px solid #e8e8ed;
}
.detail-specs-group h4 {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin: 0;
    text-align: left;
}
.detail-specs-group .detail-specs-values {
    text-align: left;
}
.detail-specs-group .detail-specs-values p {
    font-size: 18px;
    color: #1D1D1F;
    line-height: 1.8;
    margin: 0;
}
.detail-app-grid {
    display: grid;
    grid-template-columns: 644px 644px;
    gap: 32px;
    justify-content: center;
}
.detail-app-card {
    width: 644px;
    height: 400px;
    border-radius: 1.25rem;
    overflow: hidden;
}
.detail-app-image {
    background: #F5F5F7;
}
.detail-app-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.detail-app-text {
    background: #F5F5F7;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.detail-app-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #172072;
    margin-bottom: 20px;
}
.detail-app-text p {
    font-size: 1rem;
    color: #1D1D1F;
    line-height: 1.8;
    margin-bottom: 14px;
}
.detail-app-text p:last-child {
    margin-bottom: 0;
}
.detail-specs-viewer {
    background: #F5F5F7;
    border-radius: 1.25rem;
    overflow: hidden;
    padding: 24px;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}
.detail-specs-viewer-main {
    width: 100%;
    aspect-ratio: 1;
    cursor: grab;
    user-select: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.detail-specs-viewer-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.1s ease;
}
.detail-specs-viewer-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}
.specs-rotate-btn {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #172072;
    transition: all 0.2s ease;
}
.specs-rotate-btn:hover {
    background: #172072;
    color: #ffffff;
    border-color: #172072;
}
.specs-rotate-hint {
    position: absolute;
    top: 5px;
    left: 5px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1.25rem;
    color: #999;
    z-index: 2;
    pointer-events: none;
}
.detail-feature-card-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #172072;
    margin-bottom: 10px;
}
.detail-feature-card-text p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}
.products-hero-subtitle {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.products-hero-banner h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #172072;
    margin-bottom: 12px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.products-hero-banner p {
    font-size: 1.1rem;
    color: #000000;
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.6;
}
.product-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 100px;
    flex-wrap: wrap;
}
.product-filter-btn {
    padding: 10px 24px;
    border-radius: 1.5rem;
    font-size: 18px;
    font-weight: 500;
    color: #1D1D1F;
    background: transparent;
    border: 1px solid #d2d2d7;
    cursor: pointer;
    transition: all 0.25s ease;
}
.product-filter-btn.active {
    background: #172072;
    color: #ffffff;
    border-color: #172072;
}
.product-filter-btn:hover:not(.active) {
    border-color: #172072;
    color: #172072;
}
.product-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: #F5F5F7;
    border-radius: 1.25rem;
    overflow: hidden;
    max-width: 1320px;
    margin: 0 auto;
    height: 520px;
}
.product-featured-image {
    padding: 50px 0 50px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-featured-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
}
.product-featured-text {
    padding: 50px 80px 50px 0;
}
.product-featured-reverse .product-featured-text {
    padding: 50px 0 50px 80px;
}
.product-featured-reverse .product-featured-image {
    padding: 50px 80px 50px 0;
}
.product-featured-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #172072;
    margin-bottom: 16px;
}
.product-featured-text p {
    font-size: 1.05rem;
    color: #1D1D1F;
    line-height: 1.8;
    margin-bottom: 24px;
}
.product-view-btn {
    display: inline-block;
    width: auto;
    padding: 6px 18px;
    background: #172072;
    color: #ffffff;
    border-radius: 24px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.25s ease;
    text-align: center;
    align-self: flex-start;
}
.product-view-btn:hover {
    background: #cce22b;
    color: #172072;
}
.product-cards-grid {
    display: grid;
    grid-template-columns: 644px 306px 306px;
    gap: 32px;
    justify-content: center;
}
.product-cards-row {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 32px;
}
.product-card-lg {
    background: #F5F5F7;
    border-radius: 1.25rem;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    width: 644px;
    height: 356px;
    position: relative;
}
.product-card-lg-image {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-left: auto;
    padding: 20px 0;
}
.product-card-lg-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.product-card-lg-text {
    position: absolute;
    left: 24px;
    bottom: 24px;
}
.product-card-lg-text h3 {
    font-size: 24px;
    font-weight: 600;
    color: #172072;
    margin-bottom: 6px;
}
.product-card-lg-text a {
    font-size: 18px;
    font-weight: 600;
    color: #172072;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.product-card-sm {
    background: #F5F5F7;
    border-radius: 1.25rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 306px;
    height: 356px;
}
.product-card-sm-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 16px;
}
.product-card-sm-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.product-card-sm-text {
    padding: 20px 24px;
}
.product-card-sm-text h3 {
    font-size: 24px;
    font-weight: 600;
    color: #172072;
    margin-bottom: 6px;
}
.product-card-sm-text a {
    font-size: 18px;
    font-weight: 600;
    color: #172072;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.product-cards-row .product-card-lg {
    flex-direction: column;
}
.product-cards-row .product-card-lg .product-card-lg-image {
    width: 100%;
    height: auto;
    flex: 1;
}
.product-cards-row .product-card-lg .product-card-lg-text {
    width: 100%;
}
.products-hero {
    background-color: #172072;
    background-image:
        radial-gradient(ellipse at 30% 50%, rgba(0,160,233,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(204,226,43,0.05) 0%, transparent 50%),
        repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.015) 39px, rgba(255,255,255,0.015) 40px),
        repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.01) 39px, rgba(255,255,255,0.01) 40px);
    color: #ffffff;
    padding: 0;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}
.products-hero .container {
    position: relative;
    z-index: 1;
    align-self: stretch;
    width: 100%;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
}
.products-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: left;
}
.products-hero p {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 640px;
    line-height: 1.6;
    text-align: left;
}
.custom-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}
.custom-overview-image {
    width: 645px;
    height: 500px;
    align-self: center;
    border-radius: 1.25rem;
    overflow: hidden;
    background: #f5f5f7;
    box-shadow: 0 4px 20px rgba(0,0,0,0.10);
}
.custom-overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.custom-overview-text h2,
.custom-overview-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #172072;
    margin-bottom: 16px;
}
.custom-overview-text p {
    font-size: 1.05rem;
    color: #1D1D1F;
    line-height: 1.8;
    margin-bottom: 14px;
}
.custom-overview-text ul {
    margin: 0 0 14px 0;
    padding-left: 20px;
    list-style: disc;
}
.custom-overview-text ul li {
    font-size: 1.05rem;
    color: #1D1D1F;
    line-height: 1.8;
    margin-bottom: 6px;
}
.custom-workflow-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1320px;
}
.custom-use-case-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.custom-use-case-card {
    text-decoration: none;
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: box-shadow .25s ease;
    display: flex;
    flex-direction: column;
}
.custom-use-case-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.custom-use-case-image {
    width: 100%;
    aspect-ratio: 645/215;
    overflow: hidden;
    background: #f5f5f7;
}
.custom-use-case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.custom-use-case-card:hover .custom-use-case-image img {
    transform: scale(1.05);
}
.custom-use-case-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.custom-use-case-body h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #172072;
    margin-bottom: 10px;
}
.custom-use-case-body p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 14px;
    flex: 1;
}
.custom-use-case-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #172072;
}
.custom-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}
.custom-col h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #172072;
    margin-bottom: 16px;
}
.custom-col p {
    font-size: 0.95rem;
    color: #1D1D1F;
    line-height: 1.7;
    margin-bottom: 14px;
}
.custom-col ul {
    margin: 0 0 14px 0;
    padding-left: 20px;
}
.custom-col ul li {
    font-size: 0.95rem;
    color: #1D1D1F;
    line-height: 1.7;
    margin-bottom: 6px;
}
.custom-step {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-top: 1px solid #e8e8ed;
}
.custom-step:first-child {
    border-top: none;
    padding-top: 0;
}
.custom-step-num {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(23,32,114,0.08);
    color: #172072;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.custom-step-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #172072;
    margin-bottom: 6px;
}
.custom-step-content p {
    font-size: 0.95rem;
    color: #1D1D1F;
    line-height: 1.7;
    margin: 0;
}
.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.how-it-works-card {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid #e8e8ed;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.how-it-works-card .process-step-num {
    margin: 0 auto 16px;
}
.how-it-works-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #172072;
    margin-bottom: 8px;
}
.how-it-works-card p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================
   HARDWARE PAGE
   ========================================== */
.hardware-hero {
    background-color: #172072;
    background-image:
        radial-gradient(ellipse at 30% 50%, rgba(0,160,233,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(204,226,43,0.05) 0%, transparent 50%),
        repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.015) 39px, rgba(255,255,255,0.015) 40px),
        repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.01) 39px, rgba(255,255,255,0.01) 40px);
    color: #ffffff;
    padding: 0;
    position: relative;
    overflow: visible;
    min-height: 450px;
    display: flex;
    align-items: center;
}
.hardware-hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
}
.hardware-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    min-height: 450px;
}
.hardware-hero-image {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: -80px;
    padding-top: 30px;
    z-index: 2;
}
.hardware-hero-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    max-height: 520px;
}
.hardware-hero-text {
    padding: 48px 0;
}
.hardware-hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: left;
}
.hardware-hero-text p {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 560px;
    line-height: 1.6;
    text-align: left;
}
.software-hero {
    background-color: #172072;
    background-image:
        radial-gradient(ellipse at 25% 40%, rgba(0,160,233,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 60%, rgba(204,226,43,0.05) 0%, transparent 50%),
        repeating-linear-gradient(45deg, transparent, transparent 49px, rgba(255,255,255,0.01) 49px, rgba(255,255,255,0.01) 50px),
        repeating-linear-gradient(-45deg, transparent, transparent 49px, rgba(255,255,255,0.01) 49px, rgba(255,255,255,0.01) 50px);
    color: #ffffff;
    padding: 0;
    position: relative;
    overflow: visible;
    min-height: 450px;
    display: flex;
    align-items: center;
}
.software-hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
}
.software-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    min-height: 450px;
}
.software-hero-image svg {
    padding-top: 30px;
}
.software-hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.software-hero-image img,
.software-hero-image svg {
    width: 100%;
    max-width: 400px;
    height: auto;
    max-height: 480px;
}
.software-hero-text {
    padding: 48px 0;
}
.software-hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: left;
}
.software-hero-text p {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 560px;
    line-height: 1.6;
    text-align: left;
}
.support-hero {
    background-color: #172072;
    background-image:
        radial-gradient(ellipse at 80% 30%, rgba(0,160,233,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 70%, rgba(204,226,43,0.05) 0%, transparent 50%),
        repeating-linear-gradient(0deg, transparent, transparent 19px, rgba(255,255,255,0.012) 19px, rgba(255,255,255,0.012) 20px),
        repeating-linear-gradient(90deg, transparent, transparent 19px, rgba(255,255,255,0.008) 19px, rgba(255,255,255,0.008) 20px);
    color: #ffffff;
    padding: 0;
    position: relative;
    overflow: visible;
    min-height: 450px;
    display: flex;
    align-items: center;
}
.support-hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
}
.support-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    min-height: 450px;
}
.support-hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.support-hero-image svg {
    width: 100%;
    max-width: 400px;
    height: auto;
    max-height: 400px;
}
.support-hero-text {
    padding: 48px 0;
}
.support-hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: left;
}
.support-hero-text p {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 560px;
    line-height: 1.6;
    text-align: left;
}
.hardware-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap: 30px;
    align-items: stretch;
}
.hardware-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
    padding: 40px 36px;
    border-radius: 1.25rem;
    background: #ffffff;
    border: 1px solid #e8e8ed;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-align: left;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.hardware-card:hover {
    border-color: transparent;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.hardware-card-text {
    flex: 1;
}
.hardware-card-icon {
    width: 72px;
    min-width: 72px;
    height: 72px;
    flex-shrink: 0;
    order: 1;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(23,32,114,0.06);
    border-radius: 50%;
    transition: background 0.3s ease;
}
.hardware-card-icon .process-step-num {
    width: 44px;
    height: 44px;
    margin: 0;
}
.hardware-card-icon svg {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}
.hardware-card:hover .hardware-card-icon {
    background: rgba(23,32,114,0.12);
}
.hardware-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #172072;
    margin-bottom: 8px;
}
.hardware-card p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}
.process-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.process-card {
    display: flex;
    flex-direction: column;
    border-radius: 1.25rem;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e8e8ed;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    aspect-ratio: 644/580;
    position: relative;
}
.process-watermark {
    position: absolute;
    font-size: 12rem;
    font-weight: 900;
    color: rgba(23,32,114,0.06);
    line-height: 1;
    letter-spacing: -0.05em;
    pointer-events: none;
    z-index: 1;
}
.watermark-br { right: -20px; bottom: -30px; }
.watermark-bl { left: -20px; bottom: -30px; }
.watermark-tr { right: -20px; top: -60px; }
.watermark-tl { left: -20px; top: -60px; }
.process-card-image {
    overflow: hidden;
    background: #f5f5f7;
}
.process-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.process-card-img-top .process-card-image {
    flex: 0 0 60%;
    margin: 0 32px;
}
.process-card-img-top .process-card-image img {
    border-radius: 0 0 20px 20px;
}
.process-card-img-bottom .process-card-image img {
    border-radius: 20px 20px 0 0;
}
.process-card-img-bottom .process-card-image {
    border-radius: 0;
}
.process-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(23,32,114,0.08);
    color: #172072;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-right: 14px;
    flex-shrink: 0;
}
.process-card-text h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #172072;
    margin-bottom: 6px;
}
.process-card-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}
.process-card-img-bottom .process-card-image {
    flex: 0 0 60%;
    margin: 0 32px 0 32px;
}
.process-card-text {
    padding: 32px 40px 12px;
}
.process-card-img-top {
    flex-direction: column;
}
.process-card-img-bottom {
    flex-direction: column;
    justify-content: space-between;
}
.support-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.support-plan-card {
    padding: 36px 28px;
    border-radius: 1.25rem;
    background: #ffffff;
    border: 1px solid #e8e8ed;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-align: center;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.support-plan-card:hover {
    border-color: transparent;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.support-plan-featured {
    border: 2px solid #172072;
    position: relative;
}
.support-plan-badge {
    display: inline-block;
    background: #172072;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 1rem;
    margin-bottom: 12px;
}
.support-plan-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #172072;
    margin-bottom: 8px;
}
.support-plan-level {
    font-size: 1.6rem;
    font-weight: 700;
    color: #172072;
    margin-bottom: 20px;
}
.support-plan-features {
    list-style: none;
    padding: 0;
    text-align: left;
}
.support-plan-features li {
    font-size: 0.95rem;
    color: #666;
    line-height: 2;
    padding-left: 0;
}
.support-plan-features li::before {
    content: '\2713';
    color: #172072;
    font-weight: 700;
    margin-right: 8px;
}

/* ==========================================
   INDEX BLOG SECTION
   ========================================== */
.index-blog-grid {
    display: grid;
    grid-template-columns: 532px 1fr;
    gap: 32px;
}
.index-blog-featured {
    border-radius: 1.25rem;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e8e8ed;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    width: 532px;
    height: 448px;
}
.index-blog-featured-image {
    height: 65%;
    overflow: hidden;
    background: #f5f5f7;
}
.index-blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.index-blog-featured-body {
    padding: 28px 32px;
}
.index-blog-date {
    font-size: 1rem;
    color: #172072;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}
.index-blog-featured-body h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}
.index-blog-featured-body h3 a {
    color: #000000;
}
.index-blog-featured-body h3 a:hover {
    color: #172072;
}
.index-blog-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 448px;
}
.index-blog-item {
    display: flex;
    gap: 20px;
    border-radius: 1.25rem;
    overflow: hidden;
    background: #ffffff;
    align-items: stretch;
    flex: 1;
}
.index-blog-item-image {
    width: 256px;
    min-width: 256px;
    height: 100%;
    overflow: hidden;
    background: #f5f5f7;
    border-radius: 1.25rem;
    flex-shrink: 0;
}
.index-blog-item-body {
    padding: 0 16px 0 0;
}
.index-blog-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.index-blog-item-body .index-blog-date {
    margin-bottom: 6px;
}
.index-blog-item-body h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}
.index-blog-item-body h3 a {
    color: #000000;
}
.index-blog-item-body h3 a:hover {
    color: #172072;
}
.index-blog-btn {
    background: #ffffff;
    color: #172072;
    border: 2px solid #172072;
    border-radius: 24px;
    padding: 14px 36px;
    font-weight: 600;
    transition: all 0.25s ease;
}
.index-blog-btn:hover {
    background: #172072;
    color: #ffffff;
}
.index-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.capability-card {
    display: flex;
    flex-direction: column;
    padding: 32px 28px;
    border-radius: 1.25rem;
    background: #ffffff;
    border: 1px solid #e8e8ed;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-decoration: none;
    transition: box-shadow 0.3s ease;
}
.capability-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.capability-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    flex-direction: row-reverse;
    justify-content: flex-end;
}
.capability-card-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #172072;
}
.capability-card > p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* ==========================================
   MANUFACTURING CAPABILITIES CARDS — About page
   ========================================== */
.mfg-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.mfg-card {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 32px 28px 28px 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.10);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.mfg-card:hover {
    box-shadow: 0 12px 36px rgba(0,0,0,0.16);
    transform: translateY(-3px);
}
.mfg-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.mfg-card h3 {
    font-size: 1.05rem;
    font-weight: 650;
    color: #172072;
    margin-bottom: 8px;
}
.mfg-card p {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 991px) {
    .mfg-capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .mfg-capabilities-grid {
        grid-template-columns: 1fr;
    }

    .software-hero-image {
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0;
    }
    .software-hero-image img {
        margin-bottom: -80px !important;
        max-width: 100% !important;
    }
    .solutions-hero h1 {
        font-size: 1.8rem !important;
    }
    .solutions-hero .btn {
        margin-top: 8px;
    }}
.mfg-section-header {
    max-width: 720px;
    margin-bottom: 40px;
}
.mfg-section-desc {
    font-size: 1.02rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 640px;
}
.mfg-capabilities-grid .mfg-card:nth-child(1) .mfg-card-icon { background: rgba(23,32,114,0.08); color: #172072; }
.mfg-capabilities-grid .mfg-card:nth-child(2) .mfg-card-icon { background: rgba(71,85,105,0.08); color: #475569; }
.mfg-capabilities-grid .mfg-card:nth-child(3) .mfg-card-icon { background: rgba(13,148,136,0.08); color: #0d9488; }
.mfg-capabilities-grid .mfg-card:nth-child(4) .mfg-card-icon { background: rgba(22,163,74,0.08); color: #16a34a; }
.mfg-capabilities-grid .mfg-card:nth-child(5) .mfg-card-icon { background: rgba(37,99,235,0.08); color: #2563eb; }
.mfg-capabilities-grid .mfg-card:nth-child(6) .mfg-card-icon { background: rgba(124,58,237,0.08); color: #7c3aed; }

/* ==========================================
   BLOG PAGE
   ========================================== */
.blog-hero {
    background-color: #172072;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(0,160,233,0.12) 0%, transparent 40%),
        radial-gradient(circle at 90% 75%, rgba(204,226,43,0.08) 0%, transparent 35%),
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.03) 0%, transparent 50%),
        repeating-linear-gradient(45deg, transparent, transparent 25px, rgba(255,255,255,0.015) 25px, rgba(255,255,255,0.015) 26px),
        repeating-linear-gradient(-45deg, transparent, transparent 25px, rgba(255,255,255,0.015) 25px, rgba(255,255,255,0.015) 26px);
    color: #ffffff;
    padding: 80px 0;
    min-height: 800px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.blog-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 75% 25%, rgba(0,160,233,0.05) 0%, transparent 55%),
        radial-gradient(ellipse at 15% 80%, rgba(204,226,43,0.04) 0%, transparent 50%),
        linear-gradient(0deg, transparent 0%, transparent 48%, rgba(0,160,233,0.06) 48%, rgba(0,160,233,0.06) 48.5%, transparent 48.5%),
        linear-gradient(90deg, transparent 0%, transparent 72%, rgba(204,226,43,0.08) 72%, rgba(204,226,43,0.08) 72.3%, transparent 72.3%);
    pointer-events: none;
    z-index: 0;
}
.blog-hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
}
.scroll-hint {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-bounce 2s ease-in-out infinite;
    opacity: 0.3;
    cursor: pointer;
}
.scroll-hint svg {
    width: 40px;
    height: 40px;
    color: #ffffff;
}
@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 0.8; }
}
.blog-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.blog-hero-left {
    /* aligned with header logo via container padding */
}
.blog-hero-left h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}
.blog-hero-left p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 32px;
    line-height: 1.6;
}
.blog-subscribe-wrap {
    max-width: 38.5rem;
    position: relative;
}
.blog-subscribe {
    display: flex;
    width: 100%;
    height: 4.375rem;
    border-radius: 0.625rem;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.5), 0 0 0 6px rgba(255,255,255,0.3), 0 0 20px rgba(255,255,255,0.1);
    backdrop-filter: blur(4px);
    background: #ffffff;
}
.blog-subscribe input {
    flex: 1;
    padding: 0 20px;
    border: none;
    outline: none;
    font-size: 1.2rem;
    color: #1d1d1f;
    background: transparent;
    min-width: 0;
    height: 100%;
}
.blog-subscribe input::placeholder {
    color: rgba(0,0,0,0.35);
}
.blog-subscribe button {
    padding: 0 36px;
    margin: 8px;
    background: #172072;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.3s ease;
    border-radius: 0.625rem;
}
.blog-subscribe button:hover {
    background: #cce22b;
    color: #172072;
}
.blog-subscribe-error {
    color: #ef4444;
    font-size: 0.65rem;
    text-align: left;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin 0.3s ease;
    margin-top: 0;
}
.blog-subscribe-error.visible {
    max-height: 1.5rem;
    margin-top: 6px;
}

/* Featured Card (Hero Right) */
.blog-featured-card {
    display: flex;
    flex-direction: column;
    width: 35rem;
    height: 36.25rem;
    background: #ffffff;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: auto;
}
.blog-featured-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}
.blog-featured-card-bg {
    height: 60%;
    overflow: hidden;
    margin: 1px 1px 0 1px;
    border-radius: 1.125rem 1.125rem 0 0;
    background: linear-gradient(135deg, #172072 0%, #2a3a9e 100%);
    position: relative;
}
.blog-featured-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-featured-card-logo {
    position: absolute;
    bottom: 8px;
    right: 8px;
}
.blog-featured-card-logo svg {
    display: block;
}
.blog-featured-card-logo-text {
    position: absolute;
    bottom: 8px;
    right: 8px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.04em;
}
.blog-featured-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 28px;
}
.blog-featured-card-tag {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(23,32,114,0.08);
    color: #172072;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 1rem;
    margin-bottom: 14px;
    align-self: flex-start;
}
.blog-featured-card-body h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #172072;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.2s ease;
}
.blog-featured-card-body h2:hover {
    color: #000000;
}
.blog-featured-card-body p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.6;
    flex: 1;
}
.blog-featured-card-date {
    font-size: 0.82rem;
    color: var(--text-muted);
    align-self: flex-end;
    margin-top: 12px;
}

/* Blog Categories */
.blog-categories {
    padding: 80px 0 20px;
}
.blog-category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.blog-category-chip {
    padding: 8px 20px;
    background: #ffffff;
    color: #1d1d1f;
    border: 1px solid #d2d2d7;
    border-radius: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}
.blog-category-chip:hover {
    border-color: #172072;
    color: #172072;
}
.blog-category-chip.active {
    background: #172072;
    color: #ffffff;
    border-color: #172072;
}

/* Blog Card Tags & Date */
.blog-card-tag {
    display: inline-block;
    width: fit-content;
    padding: 4px 14px;
    background: rgba(23,32,114,0.08);
    color: #172072;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 1rem;
    margin-bottom: 10px;
}
.blog-card-date {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: auto;
    text-align: right;
    padding-top: 8px;
}

/* ==========================================
   BLOG / NEWS CARDS (Legacy)
   ========================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.blog-card {
    background: var(--white);
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.blog-card-image {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: linear-gradient(135deg, #172072 0%, #2a3a9e 100%);
    position: relative;
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}
.blog-card-image .blog-card-img-logo {
    position: absolute;
    bottom: 8px;
    right: 8px;
}
.blog-card-image .blog-card-img-logo svg {
    height: 16px;
    display: block;
}
.blog-card-image .blog-card-img-logo-text {
    position: absolute;
    bottom: 6px;
    right: 8px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.04em;
}
.blog-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog-card-body h3 {
    min-height: 2.8em;
}
.blog-card-body p {
    flex: 1;
}
.blog-card-meta {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.blog-card-body h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}
.blog-card-body h3 a {
    color: #172072;
    transition: color 0.2s ease;
}
.blog-card-body h3 a:hover {
    color: #000000;
}
.blog-card-body p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ==========================================
   PAGINATION
   ========================================== */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
    margin-bottom: 60px;
}
.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    border-radius: 1.5rem;
    font-size: 1rem;
    color: #1d1d1f;
    border: none;
    background: transparent;
    transition: all 0.2s ease;
}
.pagination a:hover {
    background: rgba(23,32,114,0.08);
    color: #172072;
}
.pagination .active {
    background: #172072;
    color: var(--white);
    border: none;
    min-width: 48px;
    height: 48px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(23,32,114,0.25);
}
.pagination .active:hover {
    background: #172072;
    color: var(--white);
}
.pagination .disabled {
    color: #d2d2d7;
    pointer-events: none;
}

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
    align-items: start;
}
.contact-grid-overlap {
    margin-top: -12.5rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
    pointer-events: none;
}
.contact-left {
    padding-top: 14rem;
    pointer-events: none;
}
.contact-left > * {
    pointer-events: auto;
}
.contact-left-image-box {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 1.25rem;
    background: var(--bg-gray);
}
.contact-left-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.contact-left-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}
.btn-tech-support {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.375rem;
    background: #ffffff;
    color: #172072;
    border: 0.125rem solid #172072;
    border-radius: 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}
.btn-tech-support:hover {
    background: #172072;
    color: #ffffff;
}
.btn-tech-support svg {
    width: 1.1rem;
    height: 1.1rem;
}
.contact-info h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}
.contact-info > p {
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-info-card {
    display: flex;
    gap: 14px;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}
.contact-info-card:hover {
    border-color: #172072;
    box-shadow: var(--shadow-sm);
}
.contact-info-card .contact-card-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f2f5;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
}
.contact-info-card .contact-card-text h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}
.contact-info-card .contact-card-text p {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.6;
}
.contact-follow {
    margin-top: 24px;
}
.contact-follow h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}
.contact-follow .footer-social {
    display: flex;
    gap: 10px;
    margin-top: 0;
}
.contact-follow .footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.12);
    color: var(--text);
    transition: var(--transition);
}
.contact-follow .footer-social a:hover {
    background: #172072;
    border-color: #172072;
    color: #ffffff;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    max-width: 42.5rem;
    pointer-events: auto;
}
.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}
.contact-form > p {
    color: var(--text-light);
    font-size: 0.92rem;
    margin-bottom: 28px;
    line-height: 1.5;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 1rem;
    font-weight: 700;
    color: #172072;
}
.form-group label .required {
    color: var(--danger);
}
.form-group label .optional {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.82rem;
    margin-left: 4px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
    background: var(--bg);
    color: var(--text);
}
.form-group select {
    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 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,102,204,0.1);
}

/* Submit Button */
.btn-submit {
    background-color: #172072;
    background-image:
        radial-gradient(ellipse at 70% 30%, rgba(204,226,43,0.08) 0%, transparent 50%),
        radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 100% 100%, 12px 12px;
    background-position: 0 0, 6px 6px;
    color: #ffffff;
    border-radius: 1.5rem;
}
.btn-submit:hover {
    background: #cce22b;
    color: #172072;
}
.form-group textarea {
    resize: vertical;
    min-height: 140px;
}
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}
.form-checkbox input {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
}


/* ==========================================
   BLOG DETAIL PAGE
   ========================================== */
.blog-detail-hero {
    background-color: #172072;
    background-image:
        radial-gradient(ellipse at 70% 30%, rgba(204,226,43,0.08) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 70%, rgba(0,160,233,0.06) 0%, transparent 45%),
        radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 24px 24px;
    background-position: 0 0, 0 0, 12px 12px;
    padding: 80px 0 200px;
    min-height: 500px;
    display: flex;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}
.blog-detail-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.015) 2px, rgba(255,255,255,0.015) 4px),
        linear-gradient(45deg, transparent 0%, transparent 48%, rgba(0,160,233,0.04) 48%, rgba(0,160,233,0.04) 48.5%, transparent 48.5%),
        linear-gradient(135deg, transparent 0%, transparent 52%, rgba(204,226,43,0.04) 52%, rgba(204,226,43,0.04) 52.5%, transparent 52.5%);
    pointer-events: none;
    z-index: 0;
}
.blog-detail-hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
    text-align: left;
}
.blog-detail-breadcrumb {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    color: #ffffff;
}
.blog-detail-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
}
.blog-detail-breadcrumb a:hover {
    color: #cce22b;
}
.blog-detail-breadcrumb .sep {
    color: rgba(255,255,255,0.4);
}
.blog-detail-body h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #172072;
    margin-bottom: 12px;
    text-align: left;
    line-height: 1.3;
}
.blog-detail-meta {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}
.blog-detail-content {
    margin-top: -300px;
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
}
.blog-detail-card {
    background: #ffffff;
    border-radius: 1.25rem;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-width: 860px;
    margin: 0 auto;
}
.blog-detail-featured-img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 480px;
    object-fit: cover;
    border-radius: 0.625rem;
    margin: 24px 0 32px;
}
.blog-detail-body {
    padding: 48px 56px 32px;
    line-height: 1.9;
    color: var(--text-light);
    font-size: 1.05rem;
}
.blog-detail-body h2 {
    color: #172072;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 40px 0 16px;
}
.blog-detail-body ul {
    margin: 16px 0;
    padding-left: 24px;
    list-style: disc;
}
.blog-detail-body li {
    margin-bottom: 8px;
}
.blog-detail-share {
    padding: 24px 56px 0;
    border-top: 1px solid var(--border);
}
.blog-detail-share h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 12px;
}
.blog-detail-share-icons {
    display: flex;
    gap: 12px;
}
.blog-detail-share-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f5f7;
    color: #1d1d1f;
    transition: all 0.2s ease;
}
.blog-detail-share-icons a:hover {
    background: #172072;
    color: #ffffff;
}
.blog-detail-subscribe-card {
    background-color: #172072;
    background-image:
        radial-gradient(ellipse at 30% 50%, rgba(0,160,233,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(204,226,43,0.06) 0%, transparent 50%),
        radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 20px 20px;
    background-position: 0 0, 0 0, 10px 10px;
    border-radius: 1.25rem;
    padding: 36px 40px;
    margin: 24px 56px 50px;
    position: relative;
    overflow: hidden;
}
.blog-detail-subscribe-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, transparent 0%, transparent 49%, rgba(0,160,233,0.04) 49%, rgba(0,160,233,0.04) 49.5%, transparent 49.5%),
        linear-gradient(45deg, transparent 0%, transparent 51%, rgba(204,226,43,0.04) 51%, rgba(204,226,43,0.04) 51.5%, transparent 51.5%);
    pointer-events: none;
}
.blog-detail-subscribe {
    position: relative;
    z-index: 1;
}
.blog-detail-subscribe h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}
.blog-detail-subscribe > p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
}
.blog-detail-subscribe .blog-subscribe-wrap {
    max-width: 100%;
}
.blog-detail-subscribe .blog-subscribe {
    height: 3.75rem;
    box-shadow: 0 0 0 4px rgba(255,255,255,0.15);
}
.blog-detail-subscribe .blog-subscribe input {
    font-size: 1rem;
}
.blog-detail-subscribe .blog-subscribe button {
    padding: 0 28px;
    font-size: 0.95rem;
}
.blog-detail-back {
    padding: 30px 56px 16px;
}
.blog-detail-back a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #172072;
    font-size: 1.05rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}
.blog-detail-back a:hover {
    color: #000000;
}

/* Related Posts Slider */
.blog-related {
    padding: 60px 0 80px;
}
.blog-related-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #172072;
    margin-bottom: 32px;
    text-align: left;
}
.blog-related-slider {
    overflow: hidden;
    width: 100%;
}
.blog-related-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}
.blog-related-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
    flex-shrink: 0;
}
@media (min-width: 641px) {
    .blog-related-group {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 992px) {
    .blog-related-group {
        grid-template-columns: repeat(3, 1fr);
    }
}
.blog-related-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}
.blog-related-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #d2d2d7;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}
.blog-related-dot.active {
    background: #172072;
    width: 28px;
    border-radius: 5px;
}
.blog-related-group .blog-card:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--border);
}

/* ==========================================
   PRODUCT DETAIL PAGE
   ========================================== */
.product-detail {
    padding: 60px 0;
}
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.product-gallery {
    position: sticky;
    top: calc(var(--header-height) + 20px);
}
.product-gallery-main {
    aspect-ratio: 4/3;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-gray);
    margin-bottom: 12px;
    border: 1px solid var(--border);
}
.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-gallery-thumbs {
    display: flex;
    gap: 10px;
}
.product-gallery-thumbs button {
    width: 80px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition);
    padding: 0;
    background: var(--bg-gray);
}
.product-gallery-thumbs button.active {
    border-color: var(--primary);
}
.product-gallery-thumbs button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}
.product-info .product-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 16px;
}
.product-info .product-desc {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}
.product-specs {
    margin-bottom: 24px;
}
.product-specs h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}
.specs-table {
    width: 100%;
    border-collapse: collapse;
}
.specs-table tr {
    border-bottom: 1px solid var(--border-light);
}
.specs-table td {
    padding: 10px 0;
    font-size: 0.9rem;
}
.specs-table td:first-child {
    color: var(--text-muted);
    width: 140px;
}

/* ==========================================
   TABS
   ========================================== */
.tabs-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--border);
    margin-bottom: 32px;
}
.tab-btn {
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
}
.tab-btn:hover {
    color: var(--primary);
}
.tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}
.tab-panel {
    display: none;
}
.tab-panel.active {
    display: block;
}

/* About Page */
.about-hero {
    background-color: #f5f5f7;
    background-image:
        radial-gradient(ellipse at 70% 25%, rgba(0,160,233,0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 15% 75%, rgba(204,226,43,0.04) 0%, transparent 45%),
        repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(23,32,114,0.02) 40px, rgba(23,32,114,0.02) 41px),
        repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(23,32,114,0.02) 40px, rgba(23,32,114,0.02) 41px);
    text-align: center;
    padding: 80px 0;
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.3) 0%, transparent 8%),
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.2) 0%, transparent 6%),
        radial-gradient(circle at 50% 50%, rgba(23,32,114,0.04) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}
.about-hero .container {
    position: relative;
    z-index: 1;
}
.about-hero-subtitle {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.about-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #172072;
    margin-bottom: 12px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.about-hero p {
    font-size: 1.1rem;
    color: #000000;
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-image-cards {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 30px;
}
.about-image-card {
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.10);
}
.about-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-image-card-square {
    aspect-ratio: 1 / 1;
}

.what-we-do-section {
    background-color: rgb(245,246,250);
    background-image:
        radial-gradient(circle at 90% 20%, rgba(23,32,114,0.05) 0%, transparent 35%),
        radial-gradient(circle at 10% 80%, rgba(0,160,233,0.04) 0%, transparent 35%),
        radial-gradient(circle, rgba(23,32,114,0.02) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 24px 24px;
    background-position: 0 0, 0 0, 12px 12px;
    padding: 80px 0;
    position: relative;
}
.what-we-do-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(23,32,114,0.015) 60px, rgba(23,32,114,0.015) 61px);
    pointer-events: none;
    z-index: 0;
}
.what-we-do-section .container {
    position: relative;
    z-index: 1;
}
.what-we-do-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.what-we-do-left {
    position: sticky;
    top: 50%;
    transform: translateY(-50%);
}
.what-we-do-left h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #172072;
    margin-bottom: 16px;
}
.what-we-do-left p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}
.stack-card {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 36px 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
    position: sticky;
    transition: all 0.3s ease;
    margin-bottom: 24px;
    border: 1px solid rgba(0,0,0,0.04);
}
.stack-card:nth-child(1) { top: 120px; z-index: 1; }
.stack-card:nth-child(2) { top: 140px; z-index: 2; }
.stack-card:nth-child(3) { top: 160px; z-index: 3; }
.stack-card:nth-child(4) { top: 180px; z-index: 4; }
.stack-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #172072;
    margin-bottom: 12px;
}
.stack-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.about-stat-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.about-stat-line {
    width: 2px;
    align-self: stretch;
    border-radius: 2px;
    background: var(--stat-color, #172072);
    flex-shrink: 0;
}
.about-stat-number {
    font-size: 2.375rem;
    font-weight: 700;
    color: var(--stat-color, #172072);
    line-height: 1.1;
    margin-bottom: 4px;
}
.about-stat-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.4;
}

/* Our Goals */
.about-goals-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 30px;
    align-items: stretch;
}
.about-goals-card {
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.10);
}
.about-goals-text {
    background: #ffffff;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-goals-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #172072;
    margin-bottom: 20px;
}
.about-goals-text p {
    font-size: 1.05rem;
    color: #1D1D1F;
    line-height: 1.7;
    margin-bottom: 16px;
}
.about-goals-text p:last-child {
    margin-bottom: 0;
}
.about-goals-image {
    aspect-ratio: 1;
}
.about-goals-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================
   ABOUT PAGE (Legacy)
   ========================================== */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.about-intro-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-gray);
}
.about-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-intro-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}
.about-intro-text p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
    transform: translateX(-50%);
}
.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
}
.timeline-item:nth-child(even) {
    direction: rtl;
}
.timeline-item:nth-child(even) .timeline-content {
    direction: ltr;
}
.timeline-year {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}
.timeline-content {
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}
.timeline-content h4 {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}
.timeline-content p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ==========================================
   HELP CENTER PAGE
   ========================================== */
/* Hero */
.help-hero {
    background-color: #172072;
    background-image:
        /* soft glow top-right */
        radial-gradient(ellipse at 80% 20%, rgba(204,226,43,0.08) 0%, transparent 50%),
        /* soft glow bottom-left */
        radial-gradient(ellipse at 15% 90%, rgba(0,160,233,0.06) 0%, transparent 45%),
        /* large faint circles */
        radial-gradient(circle at 70% 60%, rgba(255,255,255,0.04) 0%, transparent 40%),
        radial-gradient(circle at 25% 35%, rgba(255,255,255,0.03) 0%, transparent 30%),
        /* cross hatch pattern */
        repeating-linear-gradient(45deg, transparent, transparent 3px, rgba(255,255,255,0.03) 3px, rgba(255,255,255,0.03) 4px),
        repeating-linear-gradient(-45deg, transparent, transparent 3px, rgba(255,255,255,0.03) 3px, rgba(255,255,255,0.03) 4px);
    color: #ffffff;
    text-align: left;
    padding: 80px 0 72px;
    position: relative;
    overflow: hidden;
}
.help-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        /* horizontal accent line */
        linear-gradient(90deg, rgba(204,226,43,0.12) 0%, rgba(204,226,43,0.12) 30%, transparent 30.1%),
        /* vertical accent */
        linear-gradient(0deg, transparent 0%, transparent 70%, rgba(0,160,233,0.08) 70%, rgba(0,160,233,0.08) 70.2%, transparent 70.3%);
    pointer-events: none;
    z-index: 0;
}
.help-hero .container {
    position: relative;
    z-index: 1;
}
.help-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}
.help-title-highlight {
    color: #cce22b;
}
.help-hero p {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 32px;
}
.help-search {
    display: flex;
    align-items: center;
    width: 100%;
    background: #ffffff;
    border-radius: 0.625rem;
    padding: 14px 20px;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.help-search svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--text-muted);
}
.help-search input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 1rem;
    color: var(--text);
    background: transparent;
}
.help-search input::placeholder {
    color: var(--text-muted);
}

/* Action Cards */
.help-actions-heading {
    text-align: left;
    font-size: 1.4rem;
    font-weight: 700;
    color: #172072;
    margin-bottom: 40px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.faq-heading {
    text-align: left;
    font-size: 1.4rem;
    font-weight: 700;
    color: #172072;
    margin-bottom: 24px;
    margin-top: -20px;
}
.help-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
    box-sizing: border-box;
}
.help-action-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 36px 28px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 0.625rem;
    box-shadow: var(--shadow);
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    min-width: 0;
}
.help-action-card:hover {
    border-color: #172072;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.help-action-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 60px;
    margin-bottom: 20px;
}
.help-action-icon svg {
    width: 44px;
    height: auto;
}
.help-action-card:first-child .help-action-icon svg {
    width: 38px;
}
.help-action-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #172072;
    margin-bottom: 8px;
}
.help-action-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 28px;
    flex: 1;
}
.help-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 16.25rem;
    height: 3.125rem;
    background: #172072;
    color: #ffffff;
    border: none;
    border-radius: 0.625rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    flex-shrink: 0;
}
.help-card-btn svg {
    flex-shrink: 0;
}
.help-card-btn:hover {
    background: #cce22b;
    color: #172072;
}

/* Documentation Categories */
.help-categories {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.help-category {
    border-bottom: 1px solid var(--border);
}
.help-category-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    transition: color 0.2s;
}
.help-category-toggle:hover {
    color: #172072;
}
.help-category-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.help-category.active .help-category-arrow {
    transform: rotate(180deg);
}
.help-category-body {
    display: none;
    padding: 0 0 16px 0;
}
.help-category.active .help-category-body {
    display: block;
}
.help-category-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 24px;
}
.help-category-links a {
    font-size: 0.92rem;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s;
}
.help-category-links a:hover {
    color: #172072;
}

@media (max-width: 992px) {
    .help-actions {
        grid-template-columns: repeat(2, 1fr);
    }
    .videos-hero {
        padding: 56px 0;
    }
    .videos-hero h1 {
        font-size: 2rem;
    }
    .video-tabs {
        gap: 8px;
        margin-bottom: 36px;
    }
    .video-tabs .tab-btn {
        padding: 8px 18px;
        font-size: 0.9rem;
    }
    .about-image-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .about-image-card-square {
        aspect-ratio: 1;
    }
    .about-image-card-rect {
        aspect-ratio: 16/9;
    }
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    .about-goals-grid {
        grid-template-columns: 1fr;
    }
    .about-goals-image {
        order: -1;
        aspect-ratio: 1;
    }
    .what-we-do-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        align-items: start;
    }
    .what-we-do-left {
        position: static;
        transform: none;
        padding-top: 0;
    }
    .stack-card {
        position: static !important;
        margin-bottom: 16px;
    }
    .hardware-hero,
    .software-hero,
    .support-hero {
        padding: 56px 0;
        min-height: auto;
    }
    .hardware-hero-grid,
    .software-hero-grid,
    .support-hero-grid {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: auto;
    }
    .hardware-hero-image,
    .software-hero-image,
    .support-hero-image {
        order: 1;
        margin-top: 30px;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        padding-top: 0;
    }
    .hardware-hero-image img,
    .software-hero-image img,
    .software-hero-image svg,
    .support-hero-image svg {
        max-height: 360px;
    }
    .hardware-hero-text,
    .software-hero-text,
    .support-hero-text {
        padding: 0;
        order: 1;
    }
    .hardware-hero-text h1,
    .software-hero-text h1,
    .support-hero-text h1 {
        font-size: 2rem;
    }
    .hardware-grid,
    .support-plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .process-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .help-hero h1 {
        font-size: 1.8rem;
    }
    .help-hero p {
        font-size: 1rem;
    }
    .help-actions {
        grid-template-columns: 1fr;
    }
    .blog-hero {
        min-height: auto;
        padding: 60px 0 100px 0;
        overflow: visible;
    }
    .blog-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .blog-featured-card-bg {
        height: 50%;
    }
    .blog-hero-left h1 {
        font-size: 2.2rem;
    }
    .blog-detail-body h1 {
        font-size: 1.6rem;
    }
    .blog-detail-body {
        padding: 32px 28px 24px;
    }
    .solution-card-full {
        grid-template-columns: 1fr;
        padding: 28px;
    }
    .solution-card-split {
        grid-template-columns: 1fr;
    }
    .solution-card-split-image,
    .solution-card-split-body {
        width: 100%;
        height: auto;
    }
    .solution-card-split-body {
        padding: 28px;
    }
    .solution-card-split-body h2 {
        font-size: 1.5rem;
    }
    .solution-card-split-body p {
        font-size: 0.95rem;
        margin-bottom: 16px;
    }
    .solution-card-hero {
        height: auto;
        min-height: 24rem;
    }
    .solution-card-hero-content {
        padding: 36px;
    }
    .solution-card-hero-content h2 {
        font-size: 1.5rem;
    }
    .blog-featured-card {
        width: 100%;
        height: auto;
        min-height: 380px;
    }
    .scroll-hint {
        bottom: -60px;
    }
    .help-action-card {
        padding: 20px;
    }
    .blog-related-group .blog-card {
        width: 100%;
    }
    .blog-detail-subscribe-card {
        margin: 24px 20px 30px;
        padding: 28px 24px;
    }
    .blog-detail-subscribe .blog-subscribe {
        height: 3rem;
    }
    .blog-detail-subscribe .blog-subscribe input {
        font-size: 0.9rem;
        padding: 0 14px;
    }
    .blog-detail-subscribe .blog-subscribe button {
        padding: 0 18px;
        font-size: 0.85rem;
        white-space: nowrap;
    }
}

/* FAQ Card */
.faq-card {
    background: #ffffff;
    border-radius: 0.625rem;
    box-shadow: var(--shadow);
    padding: 24px 40px 36px;
}
.faq-title {
    text-align: left;
    font-size: 1.6rem;
    font-weight: 700;
    color: #172072;
    margin-bottom: 6px;
}
.faq-desc {
    text-align: left;
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

/* ==========================================
   FAQ / HELP CENTER (Legacy)
   ========================================== */
.faq-list {
    width: 100%;
}
.faq-item {
    border: 1px solid #d2d2d7;
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
}
.faq-question {
    width: 83.375rem;
    max-width: 100%;
    height: 4.8125rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 500;
    color: #172072;
    background: #f5f5f7;
    transition: var(--transition);
}
.faq-question:hover {
    background: #172072;
    color: #ffffff;
}
.faq-question:hover .faq-icon {
    color: #ffffff;
}
.faq-item.active .faq-question {
    background: #cce22b;
    color: #172072;
}
.faq-item.active .faq-question .faq-icon {
    color: #172072;
}
.faq-question .faq-icon {
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
    color: #172072;
    flex-shrink: 0;
}
.faq-item.active .faq-question .faq-icon {
    transform: rotate(180deg);
}
.faq-answer {
    display: none;
    padding: 24px 24px;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}
.faq-item.active .faq-answer {
    display: block;
}

/* ==========================================
   VIDEO PAGE
   ========================================== */
.videos-hero {
    background-color: #172072;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(0,160,233,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(204,226,43,0.06) 0%, transparent 50%),
        repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.015) 39px, rgba(255,255,255,0.015) 40px),
        repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.01) 39px, rgba(255,255,255,0.01) 40px);
    color: #ffffff;
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}
.videos-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 75% 30%, rgba(204,226,43,0.08) 0%, transparent 20%),
        linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.02) 48%, rgba(255,255,255,0.02) 52%, transparent 52%);
    pointer-events: none;
}
.videos-hero .container {
    position: relative;
    z-index: 1;
}
.videos-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: left;
}
.videos-hero p {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 640px;
    line-height: 1.6;
    text-align: left;
}
.video-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.video-tabs .tab-btn {
    padding: 10px 24px;
    border-radius: 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1D1D1F;
    background: #f5f5f7;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}
.video-tabs .tab-btn.active {
    background: #172072;
    color: #ffffff;
}
.video-tabs .tab-btn:hover:not(.active) {
    background: #e8e8ed;
}
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.video-card {
    border-radius: 1.25rem;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease;
}
.video-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.video-thumb {
    position: relative;
    aspect-ratio: 16/9;
    background: #f5f5f7;
    overflow: hidden;
}
.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.video-card:hover .video-thumb img {
    transform: scale(1.03);
}
.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.75);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 2;
}
.video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.15);
    transition: background 0.3s ease;
    z-index: 1;
}
.video-play svg {
    width: 60px;
    height: 60px;
    fill: #ffffff;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}
.video-card:hover .video-play {
    background: rgba(0,0,0,0.25);
}
.video-card:hover .video-play svg {
    transform: scale(1.1);
}
.video-card-body {
    padding: 20px 24px;
}
.video-card-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #172072;
    background: rgba(23,32,114,0.08);
    padding: 4px 12px;
    border-radius: 1rem;
    margin-bottom: 10px;
}
.video-card-body h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #172072;
    line-height: 1.4;
}
.video-card-body h3:hover {
    color: #000000;
}

/* ==========================================
   POLICY / LEGAL PAGES
   ========================================== */
.policy-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #172072;
    margin-top: 40px;
    margin-bottom: 12px;
}
.policy-content h2:first-child {
    margin-top: 0;
}
.policy-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1D1D1F;
    margin-top: 24px;
    margin-bottom: 8px;
}
.policy-content p {
    font-size: 1.05rem;
    color: #1D1D1F;
    line-height: 1.7;
    margin-bottom: 16px;
}
.policy-content ul {
    margin: 0 0 16px 0;
    padding-left: 24px;
}
.policy-content li {
    font-size: 1.05rem;
    color: #1D1D1F;
    line-height: 1.7;
    margin-bottom: 6px;
}
.policy-content a {
    color: #172072;
    text-decoration: underline;
}
.policy-content a:hover {
    color: #000000;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-split {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    column-gap: 48px;
    align-items: start;
    text-align: left;
}
.cta-split-left h2,
.cta-split-right h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}
.cta-split-left p,
.cta-split-right p {
    font-size: 1rem;
    opacity: 0.85;
    margin-bottom: 24px;
    line-height: 1.6;
    height: 3.2em;
}
.cta-split-divider {
    width: 1px;
    height: 180px;
    background: rgba(255,255,255,0.2);
}
.cta-subscribe-form {
    display: flex;
    gap: 0;
    max-width: 440px;
    height: 52px;
}
.cta-subscribe-form input {
    flex: 1;
    padding: 0 20px;
    height: 52px;
    border: 1px solid rgba(255,255,255,0.3);
    border-right: none;
    border-radius: 24px 0 0 24px;
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    font-size: 0.95rem;
    outline: none;
    line-height: 52px;
}
.cta-subscribe-form input::placeholder {
    color: rgba(255,255,255,0.5);
}
.cta-subscribe-form button {
    padding: 0 28px;
    height: 52px;
    background: #ffffff;
    color: #172072;
    border: none;
    border-radius: 0 24px 24px 0;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.25s ease;
}
.cta-subscribe-form button:hover {
    background: #cce22b;
}
.cta-section {
    background-color: #172072;
    background-image:
        radial-gradient(ellipse at 25% 30%, rgba(0,160,233,0.08) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 70%, rgba(204,226,43,0.06) 0%, transparent 50%),
        repeating-conic-gradient(rgba(255,255,255,0.015) 0% 25%, transparent 0% 50%) 0 0 / 60px 60px;
    color: var(--white);
    text-align: center;
    padding: 50px 0 50px;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 40%, rgba(255,255,255,0.05) 0%, transparent 12%),
        radial-gradient(circle at 85% 60%, rgba(255,255,255,0.05) 0%, transparent 12%),
        radial-gradient(circle at 50% 50%, rgba(204,226,43,0.05) 0%, transparent 25%),
        linear-gradient(0deg, transparent 0%, transparent 45%, rgba(0,160,233,0.06) 45%, rgba(0,160,233,0.06) 45.5%, transparent 45.5%),
        linear-gradient(90deg, transparent 0%, transparent 65%, rgba(204,226,43,0.06) 65%, rgba(204,226,43,0.06) 65.5%, transparent 65.5%);
    pointer-events: none;
    z-index: 0;
}
.cta-section .container {
    position: relative;
    z-index: 1;
}
.cta-expert-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #172072;
    border-radius: 1.5rem;
    font-weight: 600;
    padding: 14px 32px;
    font-size: 1rem;
}
.cta-expert-btn:hover {
    background: #cce22b;
    color: #172072;
}
.cta-expert-btn svg {
    transition: transform 0.2s ease;
}
.cta-expert-btn:hover svg {
    transform: translateX(4px);
}
.cta-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.help-cta-btn {
    background: #ffffff;
    color: #172072;
    border-radius: 1.5rem;
    font-weight: 600;
    padding: 14px 36px;
}
.help-cta-btn:hover {
    background: #cce22b;
    color: #172072;
}
.cta-section .btn-white {
    background: #ffffff;
    color: #172072;
    font-weight: 600;
    border-radius: 1.5rem;
    padding: 14px 36px;
    font-size: 1rem;
    transition: all 0.25s ease;
}
.cta-section .btn-white:hover {
    background: #cce22b;
    color: #172072;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(204,226,43,0.3);
}
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.cta-btn svg {
    transition: transform 0.25s ease;
}
.cta-btn:hover svg {
    transform: translateX(3px);
}

/* ==========================================
   PARTNERS / CLIENTS
   ========================================== */
.partners-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.partners-grid img {
    height: 48px;
    width: auto;
    opacity: 0.5;
    transition: var(--transition);
    filter: grayscale(100%);
}
.partners-grid img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: #f5f5f7;
    color: #1d1d1f;
    padding: 56px 0 0;
}

/* Footer Top: Logo + Subscribe */
.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}
.footer-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.footer-logo img,
.footer-logo-svg {
    height: 48px;
    width: auto;
}
.footer-separator {
    color: #1D1D1F;
    font-size: 1.5rem;
    font-weight: 300;
    user-select: none;
}
.footer-tagline {
    color: #1D1D1F;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Footer Top Right: Language + Social */
.footer-top-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}
/* Language Tabs */
.footer-lang {
    display: flex;
    align-items: center;
}
.footer-lang-tabs {
    display: flex;
    border: 0.5px solid #172072;
    border-radius: 0.5rem;
    overflow: hidden;
}
.footer-lang-tab {
    padding: 0.2rem 0.6rem;
    background: transparent;
    color: #1D1D1F;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    border: 3px solid transparent;
    border-radius: 0.5rem;
    transition: background 0.3s ease, color 0.3s ease;
    font-family: inherit;
}
.footer-lang-tab.active {
    background: rgba(23, 32, 114, 0.10);
    background-clip: padding-box;
    color: #172072;
}
.footer-lang-tab:hover:not(.active) {
    background: rgba(23, 32, 114, 0.10);
    background-clip: padding-box;
    color: #172072;
}

/* Divider between lang and social */
.footer-top-divider {
    color: #1D1D1F;
    font-size: 1.5rem;
    font-weight: 300;
    user-select: none;
}

/* Social icons in footer top */
.footer-top-right .footer-social {
    display: flex;
    gap: 12px;
    margin-top: 0;
}
.footer-top-right .footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    border: 0.15rem solid #172072;
    color: #172072;
    transition: var(--transition);
}
.footer-top-right .footer-social a img,
.footer-top-right .footer-social a svg {
    width: 18px;
    height: 18px;
}
.footer-top-right .footer-social a svg {
    fill: currentColor;
}
.footer-top-right .footer-social a:hover {
    background: #172072;
    color: #ffffff;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h4 {
    color: #1d1d1f;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 12px;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: rgba(0,0,0,0.55);
    font-size: 1.05rem;
    transition: var(--transition);
}
.footer-links a:hover {
    color: #172072;
    padding-left: 4px;
}

/* Footer Contact Info */
.footer-contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(0,0,0,0.55);
}
.footer-contact-item .contact-icon {
    flex-shrink: 0;
    width: 18px;
    text-align: center;
    margin-top: 2px;
    opacity: 0.7;
}
.footer-qr {
    margin-top: 12px;
    display: flex;
    align-items: flex-start;
}
.footer-qr img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    background: rgba(0,0,0,0.05);
    padding: 4px;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0,0,0,0.06);
    color: rgba(0,0,0,0.5);
    transition: var(--transition);
    font-size: 0.9rem;
}
.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-bottom {
    background: #172072;
    color: rgba(255,255,255,0.7);
    padding: 20px 0;
    font-size: 0.85rem;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-bottom a {
    color: rgba(255,255,255,0.6);
}
.footer-bottom a:hover {
    color: var(--white);
}

/* ==========================================
   CHAT WIDGET (okki style)
   ========================================== */
.chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}
.chat-widget-btn {
    width: 56px;
    height: 56px;
    background: #172072;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}
.chat-widget-btn:hover {
    transform: scale(1.1);
    background: #0d1250;
}
.chat-popup {
    display: none;
    position: absolute;
    bottom: 68px;
    right: 0;
    width: 360px;
    height: 620px;
    background: linear-gradient(180deg, #172072 0%, #ffffff 50%);
    border-radius: 1.25rem;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
    overflow: hidden;
    flex-direction: column;
}
.chat-widget.active .chat-popup {
    display: flex;
}
.chat-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: transparent;
}
.chat-popup-title {
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
}
.chat-popup-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 4px;
    opacity: 0.8;
}
.chat-popup-close:hover {
    opacity: 1;
}
.chat-popup-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    position: relative;
}
.chat-popup-body::-webkit-scrollbar {
    width: 4px;
}
.chat-popup-body::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.15);
    border-radius: 2px;
}
.chat-tab-content {
    display: none;
}
.chat-tab-content.active {
    display: block;
}
.chat-tab-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}
.chat-home-greeting {
    padding: 30px 20px 16px;
}
.chat-home-greeting {
    text-align: left;
}
.chat-home-greeting h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    line-height: 1.1;
}
.chat-home-greeting p {
    font-size: 1.9rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}
.chat-home-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 4px 12px;
}
.chat-home-card {
    background: #ffffff;
    border-radius: 0.75rem;
    border: 1px solid #e8e8ed;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 14px;
}
.chat-home-msg {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #172072;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
}
.chat-home-msg span { flex: 1; }
.chat-home-support h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #172072;
    margin-bottom: 10px;
}
.chat-home-support-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 0.85rem;
    color: #1D1D1F;
    cursor: pointer;
}
.chat-home-support-item:hover { color: #172072; }
.chat-home-blog {
    cursor: pointer;
    position: relative;
    padding-right: 28px;
}
.chat-home-blog .chat-blog-cat { font-size: 0.7rem; margin-bottom: 4px; }
.chat-home-blog .chat-blog-date { font-size: 0.7rem; color: #999; margin-left: 6px; }
.chat-home-blog h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1D1D1F;
    line-height: 1.3;
    margin: 4px 0;
}
.chat-home-blog p { font-size: 0.8rem; color: #666; line-height: 1.4; margin: 0; }
.chat-popup-tabs {
    display: flex;
    border-top: 1px solid #e8e8ed;
    background: #f5f5f7;
}
.chat-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 8px;
    background: none;
    border: none;
    color: #999;
    font-size: 0.75rem;
    cursor: pointer;
    transition: color 0.2s ease;
}
.chat-tab.active {
    color: #172072;
}
.chat-tab:hover {
    color: #172072;
}
.chat-tab-content[data-chat-tab="messages"] {
    height: 100%;
}
.chat-msg-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    position: relative;
    padding: 20px;
}
.chat-msg-empty h4 { margin: 12px 0 6px; }
.chat-msg-empty p { margin: 0 0 24px; }
.chat-msg-empty h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1D1D1F;
    margin: 12px 0 6px;
}
.chat-msg-empty p {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 0;
}
.chat-msg-start-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #172072;
    color: #ffffff;
    border: none;
    border-radius: 24px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}
.chat-msg-start-btn svg {
    transition: transform 0.2s ease;
}
.chat-msg-start-btn:hover {
    background: #0d1250;
}
.chat-msg-start-btn:hover svg {
    transform: translateX(3px);
}
.chat-support-form {
    display: none;
    flex-direction: column;
    position: absolute;
    inset: 0;
    background: #ffffff;
    z-index: 5;
    overflow: hidden;
}
.chat-support-form.active {
    display: flex;
}
.chat-support-form .chat-msg-convo-top span {
    font-size: 1.05rem;
    text-align: center;
}
.chat-support-back,
.chat-support-close {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 4px;
}
.chat-support-body {
    flex: 1;
    overflow-y: auto;
    padding: 12px 16px 16px;
}
.chat-support-desc {
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 12px;
}
.chat-support-field {
    margin-bottom: 10px;
}
.chat-support-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1D1D1F;
    margin-bottom: 3px;
}
.chat-support-field .req {
    color: #ef4444;
    margin-left: 1px;
}
.chat-support-field select {
    width: 100%;
    padding: 7px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.8rem;
    outline: none;
    box-sizing: border-box;
    background: #ffffff;
    appearance: none;
}
.chat-support-field input,
.chat-support-field textarea {
    width: 100%;
    padding: 7px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.8rem;
    outline: none;
    box-sizing: border-box;
    font-family: inherit;
}
.chat-support-field input:focus,
.chat-support-field textarea:focus {
    border-color: #172072;
}
.chat-support-hint {
    display: block;
    font-size: 0.7rem;
    color: #999;
    margin-top: 3px;
}
.chat-support-attach {
    display: inline-block;
    padding: 6px 14px;
    border: 1px dashed #ccc;
    border-radius: 6px;
    font-size: 0.8rem;
    color: #666;
    cursor: pointer;
    margin-top: 4px;
}
.chat-support-attach:hover {
    border-color: #172072;
    color: #172072;
}
.chat-support-submit {
    width: 100%;
    padding: 12px;
    background: #172072;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    padding: 10px;
    font-size: 0.9rem;
}
.chat-support-submit:hover {
    background: #0d1250;
}
.chat-support-cancel {
    display: block;
    width: 100%;
    padding: 8px;
    background: none;
    border: none;
    color: #999;
    font-size: 0.85rem;
    cursor: pointer;
    margin-top: 2px;
    text-align: center;
}
.chat-support-cancel:hover {
    color: #666;
}
.chat-msg-convo {
    display: none;
    flex-direction: column;
    position: absolute;
    inset: 0;
    background: #ffffff;
    z-index: 5;
    overflow: hidden;
}
.chat-msg-convo.active {
    display: flex;
}
.chat-msg-convo-top {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-bottom: 1px solid #e8e8ed;
    flex-shrink: 0;
}
.chat-msg-convo-top span {
    flex: 1;
    font-weight: 700;
    font-size: 0.95rem;
    color: #172072;
}
.chat-msg-back,
.chat-msg-convo-close {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 4px;
}
.chat-msg-convo-body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 16px;
}
.chat-msg-bubble {
    display: block;
    background: #f0f0f5;
    color: #1D1D1F;
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 12px 16px;
    border-radius: 16px 16px 16px 4px;
    max-width: 85%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: pre-wrap;
    margin-bottom: 10px;
}
.chat-msg-convo-form {
    padding: 10px 12px;
    flex-shrink: 0;
}
.chat-msg-form-card {
    background: #f5f5f7;
    border: 2px solid transparent;
    border-radius: 1rem;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 1px;
    transition: border-color 0.2s ease;
}
.chat-msg-form-card:focus-within {
    border-color: #172072;
}
.chat-msg-email {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.85rem;
    outline: none;
    box-sizing: border-box;
}
.chat-msg-email:focus {
    border-color: #cce22b;
}
.chat-msg-email.invalid {
    border-color: #ef4444;
}
.chat-msg-input-row {
    position: relative;
}
.chat-msg-input-row textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.85rem;
    resize: none;
    outline: none;
    min-height: 52px;
    max-height: 140px;
    font-family: inherit;
    box-sizing: border-box;
    overflow-y: auto;
    line-height: 1.5;
}
.chat-msg-input-row textarea::-webkit-scrollbar {
    width: 4px;
}
.chat-msg-input-row textarea::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 2px;
}
.chat-msg-input-row textarea:focus {
    border-color: #cce22b;
}
.chat-msg-send {
    position: absolute;
    right: 10px;
    bottom: 14px;
    width: 30px;
    height: 30px;
    background: #ccc;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    pointer-events: none;
    z-index: 2;
    opacity: 0.6;
}
.chat-msg-send.active {
    background: #172072;
    cursor: pointer;
    pointer-events: auto;
    z-index: 3;
    opacity: 1;
}
.chat-msg-send.active:hover {
    background: #0d1250;
}
.chat-blog-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.chat-blog-item {
    position: relative;
    padding: 14px 28px 14px 14px;
    background: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #e8e8ed;
    cursor: pointer;
    transition: box-shadow 0.2s ease;
}
.chat-blog-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.chat-blog-cat {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: #172072;
    background: rgba(23,32,114,0.08);
    padding: 2px 8px;
    border-radius: 8px;
    margin-right: 8px;
}
.chat-blog-date {
    font-size: 0.75rem;
    color: #999;
}
.chat-blog-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1D1D1F;
    margin: 6px 0 4px;
    line-height: 1.3;
}
.chat-blog-item p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}
.chat-blog-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s ease;
}
.chat-blog-arrow:hover {
    color: #172072;
}
.chat-blog-detail {
    display: none;
    flex-direction: column;
    position: absolute;
    inset: 0;
    background: #ffffff;
    z-index: 2;
    padding: 56px 20px 20px;
}
.chat-blog-detail.active {
    display: flex;
}
.chat-blog-loader {
    text-align: center;
    padding: 16px;
    font-size: 0.8rem;
    color: #999;
}
.chat-blog-back {
    position: absolute;
    top: 12px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    color: #172072;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    z-index: 3;
}
.chat-blog-detail-content {
    flex: 1;
    overflow-y: auto;
    font-size: 0.9rem;
    color: #1D1D1F;
    line-height: 1.7;
}
.chat-blog-detail-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #172072;
    margin-bottom: 8px;
}
.blog-reader-overlay {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.blog-reader-overlay.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}
.blog-reader-card {
    position: relative;
    width: 720px;
    max-width: 90vw;
    height: 85vh;
    background: #ffffff;
    border-radius: 1.25rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 16px 60px rgba(0,0,0,0.2);
}
.blog-reader-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid #e8e8ed;
    flex-shrink: 0;
}
.blog-reader-top span {
    font-weight: 700;
    font-size: 1rem;
    color: #172072;
}
.blog-reader-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #999;
    cursor: pointer;
    padding: 4px;
}
.blog-reader-close:hover {
    color: #333;
}
.blog-reader-content {
    flex: 1;
    overflow-y: auto;
    padding: 32px 40px 40px;
}
.blog-reader-content .chat-blog-cat {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #172072;
    background: rgba(23,32,114,0.08);
    padding: 4px 12px;
    border-radius: 12px;
    margin-right: 10px;
    margin-bottom: 8px;
}
.blog-reader-content .chat-blog-date {
    font-size: 0.85rem;
    color: #999;
}
.blog-reader-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #172072;
    margin: 12px 0 20px;
    line-height: 1.3;
}
.blog-reader-content p {
    font-size: 1.05rem;
    color: #1D1D1F;
    line-height: 1.8;
    margin-bottom: 16px;
}
    font-weight: 700;
    color: #172072;
    margin-bottom: 8px;
}
.chat-blog-detail-content p {
    margin-bottom: 12px;
}

/* ==========================================
   IP BLOCK OVERLAY
   ========================================== */
.block-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}
.block-overlay.active {
    display: flex;
}
.block-message {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 480px;
}
.block-message h2 {
    color: var(--dark);
    margin-bottom: 12px;
}
.block-message p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    .footer-top-right {
        gap: 12px;
    }
    .footer-lang-tab {
        padding: 6px 14px;
        font-size: 0.85rem;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }
    .header-inner {
        padding: 0 20px;
    }

    /* Mobile Navigation */
    .nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    .nav.active {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    .nav-item {
        border-bottom: 1px solid var(--border-light);
    }
    .nav-link {
        padding: 14px 0;
    }
    .dropdown {
        position: static;
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding: 0 0 8px 16px;
    }
    .nav-item.dropdown-open .dropdown {
        display: block;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-slide-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 48px 20px;
    }
    .hero-slide-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-slide-image {
        order: -1;
    }
    .hero-slide-image img {
        max-width: 300px;
        max-height: 280px;
    }
    .hero-slide-content h2 {
        font-size: 2rem;
        color: #FFFFFF;
    }
    .hero-slide-content p {
        color: rgba(255,255,255,0.9);
    }
    .products-grid,
    .services-grid,
    .hardware-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
    }
    .product-gallery {
        position: static;
    }

    .about-intro {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid-overlap {
        margin-top: 30px;
    }
    .contact-left {
        padding-top: 0;
        order: 2;
    }
    .contact-form {
        order: 1;
    }
    .contact-left-desc {
        color: var(--text-light);
    }
    .contact-form {
        padding: 28px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .hero-mini-tall {
        padding: 60px 0 120px;
    }
    .hero-contact {
        height: 300px;
    }
    .hero-contact-content h1 {
        font-size: 2rem;
    }
    .hero-contact-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    .section-padding {
        padding: 48px 0;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .hero-slide-inner {
        padding: 40px 20px;
    }
    .hero-slide-content h2 {
        font-size: 1.6rem;
        color: #FFFFFF;
    }
    .hero-slide-content p {
        font-size: 0.95rem;
        color: rgba(255,255,255,0.9);
    }
    .hero-arrow-left {
        left: 8px;
    }
    .hero-arrow-right {
        right: 8px;
    }
    .hero-bar {
        width: 80px;
    }
    .solutions-hero h1 {
        font-size: 1.6rem !important;
        line-height: 1.25 !important;
    }
    .solutions-hero p {
        font-size: 0.95rem !important;
        max-width: 100% !important;
        line-height: 1.6 !important;
    }
    .solutions-hero .btn {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: auto;
        min-width: 220px;
        padding: 14px 28px !important;
        font-size: 0.95rem !important;
        margin: 0 auto;
    }

    .features-grid,
    .cta-split {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    .cta-split-divider {
        width: 100%;
        height: 1px;
    }
    .product-featured {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .product-featured-image {
        padding: 24px 24px 0;
    }
    .product-featured-text {
        padding: 24px;
    }
    .product-featured-text h2 { font-size: 1.5rem; }
    .how-it-works-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    .how-it-works-card {
        padding: 24px 20px;
    }
    .how-it-works-card h3 {
        font-size: 1.15rem;
    }
    .how-it-works-card p {
        font-size: 0.92rem;
    }
    .how-it-works-card span {
        font-size: 5rem !important;
        top: -12px !important;
        left: -4px !important;
    }
    .custom-overview-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .custom-overview-image {
        width: 100%;
        height: auto;
    }
    .custom-workflow-grid {
        grid-template-columns: 1fr;
    }
    .custom-workflow-grid span {
        margin-left: 110px !important;
        font-size: 20px !important;
    }
    .custom-use-case-grid {
        grid-template-columns: 1fr;
    }
    .custom-use-case-body h3 {
        font-size: 1.05rem;
    }
    .custom-use-case-body p {
        font-size: 0.9rem;
    }
    .custom-two-col {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .index-blog-grid {
        grid-template-columns: 1fr;
    }
    .index-blog-item {
        flex-direction: column;
    }
    .index-blog-item-image {
        width: 100%;
        min-width: auto;
        aspect-ratio: 16/9;
    }
    .features-grid,
    .products-grid,
    .services-grid,
    .hardware-grid,
    .process-cards-grid,
    .support-plans-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .hardware-grid {
        grid-template-columns: 1fr !important;
    }
    .software-platform-row {
        flex-direction: column-reverse !important;
    }
    .software-platform-row > div {
        flex: auto !important;
        padding: 28px !important;
    }
    .software-platform-row > div:first-child {
        padding-top: 0 !important;
    }
    .security-compliance-row {
        flex-direction: column-reverse !important;
        gap: 24px !important;
    }
    .security-compliance-row > div:first-child {
        width: 100% !important;
    }
    .security-compliance-row > div:last-child {
        width: 100% !important;
    }
    .ecosystem-bottom-row {
        flex-direction: column !important;
        gap: 12px !important;
    }
    .ecosystem-bottom-card {
        display: grid !important;
        grid-template-columns: 28px 1fr 18px !important;
        grid-template-rows: auto auto !important;
        gap: 2px 12px !important;
        width: 100% !important;
        height: auto !important;
        padding: 14px 18px !important;
        align-items: center !important;
        text-decoration: none !important;
    }
    .ecosystem-bottom-card > svg:first-child {
        grid-row: 1 / 3;
        grid-column: 1;
        align-self: center;
    }
    .ecosystem-bottom-card > span:first-of-type {
        grid-row: 1;
        grid-column: 2;
        font-size: 0.95rem !important;
        white-space: nowrap;
    }
    .ecosystem-bottom-card > span:last-of-type {
        grid-row: 2;
        grid-column: 2;
        font-size: 0.8rem !important;
        line-height: 1.3 !important;
    }
    .ecosystem-bottom-card > svg:last-child {
        grid-row: 1 / 3;
        grid-column: 3;
        align-self: center;
    }
    .related-gaming-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
        padding: 12px 16px !important;
    }
    .related-gaming-row > span {
        font-size: 0.78rem !important;
        margin-bottom: 0;
    }
    .related-gaming-row > a {
        font-size: 0.75rem !important;
        padding: 4px 12px !important;
    }
    .retail-security-row {
        flex-direction: column-reverse !important;
        gap: 20px !important;
    }
    .retail-security-row > div:first-child {
        width: 100% !important;
    }
    .retail-integration-row {
        flex-direction: column !important;
        gap: 24px !important;
    }
    .retail-integration-row > div:first-child {
        width: 100% !important;
    }
    .retail-what-is-row {
        flex-direction: column-reverse !important;
    }
    .retail-what-is-row > div:first-child {
        padding: 28px !important;
    }
    .retail-what-is-row > div:last-child {
        padding: 20px 28px 0 !important;
    }
    .retail-intro-cards {
        flex-direction: column !important;
        gap: 8px !important;
    }
    .retail-intro-cards > div {
        padding: 12px 14px !important;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .stat-item .stat-number {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .footer-tagline {
        font-size: 1rem;
    }
    .footer-logo img {
        height: 36px;
    }
    .footer-top-right {
        gap: 10px;
    }
    .footer-lang-tab {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    .footer-bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;

    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .videos-hero {
        padding: 48px 0;
    }
    .videos-hero h1 {
        font-size: 1.6rem;
    }
    .videos-hero p {
        font-size: 0.95rem;
    }
    .video-tabs {
        gap: 6px;
        margin-bottom: 28px;
    }
    .video-tabs .tab-btn {
        padding: 7px 16px;
        font-size: 0.85rem;
    }
    .video-card-body {
        padding: 16px 20px;
    }
    .video-card-body h3 {
        font-size: 1rem;
    }
    .hardware-hero,
    .software-hero,
    .support-hero {
        padding: 40px 0;
        min-height: auto;
    }
    .hardware-hero-grid,
    .software-hero-grid,
    .support-hero-grid {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: auto;
    }
    .hardware-hero-image,
    .software-hero-image,
    .support-hero-image {
        order: 1;
        margin-top: 30px;
        max-width: 260px;
        margin-left: auto;
        margin-right: auto;
        padding-top: 0;
    }
    .hardware-hero-image img,
    .software-hero-image img,
    .software-hero-image svg,
    .support-hero-image svg {
        max-height: 280px;
    }
    .software-hero-image img {
        margin-bottom: 30px !important;
        max-width: 100% !important;
    }
    .hardware-hero-text,
    .software-hero-text,
    .support-hero-text {
        padding: 0;
        order: 1;
    }
    .hardware-hero-text h1,
    .software-hero-text h1,
    .support-hero-text h1 {
        font-size: 1.6rem;
    }
    .hardware-hero-text p,
    .software-hero-text p,
    .support-hero-text p {
        font-size: 0.95rem;
    }
    .hardware-card {
        padding: 24px 20px;
        gap: 20px;
        flex-direction: row;
    }
    .hardware-card-icon {
        width: 56px;
        height: 56px;
    }
    .hardware-card-icon svg {
        width: 32px;
        height: 32px;
    }
    .hardware-card h3 {
        font-size: 1.05rem;
    }
    .hardware-card p {
        font-size: 0.9rem;
    }
    .support-plan-card {
        padding: 28px 20px;
    }
    .process-cards-grid {
        grid-template-columns: 1fr !important;
    }
    .process-card {
        display: block !important;
        aspect-ratio: auto !important;
        height: auto !important;
        overflow: visible !important;
    }
    .process-card-img-top .process-card-image,
    .process-card-img-bottom .process-card-image {
        width: calc(100% - 40px) !important;
        aspect-ratio: 16/9;
        margin: 0 20px !important;
        flex: 0 0 auto !important;
    }
    .process-card-img-top .process-card-image {
        border-radius: 0 0 16px 16px !important;
    }
    .process-card-img-bottom .process-card-image {
        border-radius: 16px 16px 0 0 !important;
    }
    .process-card-image img {
        border-radius: inherit !important;
    }
    .process-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .process-card-text {
        padding: 24px 20px 64px !important;
    }
    .process-card-text h3 {
        font-size: 1.2rem;
    }
    .process-card-text p {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .timeline::before {
        left: 20px;
    }
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .timeline-item:nth-child(even) {
        direction: ltr;
    }

    .chat-widget {
        bottom: 16px;
        right: 16px;
    }
    .chat-widget-btn {
        width: 48px;
        height: 48px;
    }
    .chat-popup {
        width: 300px;
        height: 480px;
        right: -8px;
    }

    /* About Page — Mobile */
    .about-hero {
        min-height: auto;
        padding: 60px 0;
    }
    .about-hero h1 {
        font-size: 1.6rem;
        max-width: 100%;
    }
    .about-hero p {
        font-size: 0.95rem;
        max-width: 100%;
    }
    .about-hero-subtitle {
        font-size: 0.8rem;
    }
    .about-image-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .about-image-card-square {
        aspect-ratio: 1;
    }
    .about-image-card-rect {
        aspect-ratio: 16/9;
    }
    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .about-stat-number {
        font-size: 1.8rem;
    }
    .about-stat-label {
        font-size: 0.95rem;
    }
    .about-goals-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .about-goals-image {
        order: -1;
        aspect-ratio: 1;
    }
    .about-goals-text {
        padding: 32px 24px;
    }
    .about-goals-text h2 {
        font-size: 1.5rem;
    }
    .about-goals-text p {
        font-size: 0.95rem;
    }
    .what-we-do-section {
        padding: 48px 0 40px;
    }
    .what-we-do-grid {
        gap: 20px;
    }
    .what-we-do-left {
        padding-top: 0;
    }
    .what-we-do-left h2 {
        font-size: 1.5rem;
    }
    .stack-card h3 {
        font-size: 1.2rem;
    }
    .stack-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-slide-content h2 {
        font-size: 1.35rem;
        color: #FFFFFF;
    }
    .hero-slide-content p {
        font-size: 0.9rem;
        color: rgba(255,255,255,0.9);
    }
    .hero-buttons {
        flex-direction: column;
    }
    .hero-buttons .btn {
        width: 100%;
    }
    .hero-slide-image img {
        max-width: 240px;
        max-height: 200px;
    }
    .hero-controls {
        bottom: 16px;
    }
    .hero-bar {
        width: 60px;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .about-image-cards {
        gap: 16px;
    }
    .about-goals-text {
        padding: 24px 20px;
    }
}

/* ==========================================
   PRINT STYLES
   ========================================== */
@media print {
    .header, .footer, .chat-widget-btn, .search-overlay, .mobile-toggle {
        display: none !important;
    }
    body {
        font-size: 12pt;
    }
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   SKIP LINK (Accessibility)
   ========================================== */
.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 10000;
    transition: top 0.3s;
}
.skip-link:focus {
    top: 8px;
}





