/* Page-specific styles extracted from original HTML files */

/* === smart-vision === */
/* Page-specific styles only */
        .features-grid-5 {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
        }

        .problem-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .problem-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
        }

        .problem-icon {
            width: 56px;
            height: 56px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.25rem;
        }

        .problem-card h3 {
            margin-bottom: 0.75rem;
        }

        .problem-card p {
            font-size: 0.9rem;
        }

        .workflow-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .workflow-step {
            text-align: center;
            padding: 2rem 1rem;
        }

        .step-number {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: rgba(0, 212, 255, 0.1);
            border: 2px solid var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
        }

        .workflow-step h3 {
            margin-bottom: 0.75rem;
        }

        .workflow-step p {
            font-size: 0.9rem;
        }

        .fashion-card {
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 3rem;
        }

        .fashion-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 0.8rem;
            background: var(--gradient-1);
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--bg-dark);
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .fashion-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .fashion-item {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 1.5rem;
        }

        .fashion-item h4 {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.75rem;
            font-size: 1rem;
        }

        .fashion-item h4 .material-icons-round {
            font-size: 20px;
            color: var(--primary);
        }

        .fashion-item p {
            font-size: 0.9rem;
        }

        .fashion-item.highlight {
            background: rgba(124, 58, 237, 0.1);
            border-color: rgba(124, 58, 237, 0.3);
        }

        .fashion-item.highlight h4 {
            color: #a78bfa;
        }

        .fashion-item.highlight .material-icons-round {
            color: #a78bfa;
        }

        .industries-flex {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .industry-tag {
            padding: 0.75rem 1.5rem;
            background: var(--bg-dark);
            border: 1px solid var(--border);
            border-radius: 8px;
            font-size: 0.9rem;
            color: var(--text-secondary);
            transition: all 0.3s ease;
        }

        .industry-tag:hover {
            border-color: rgba(0, 212, 255, 0.5);
            color: var(--primary);
        }

        .comparison-card {
            background: var(--bg-card);
            border-radius: 20px;
            overflow: hidden;
        }

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

        .comparison-table th,
        .comparison-table td {
            padding: 1.25rem 1.5rem;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }

        .comparison-table th {
            background: var(--bg-dark);
            font-weight: 600;
        }

        .comparison-table th:last-child,
        .comparison-table td:last-child {
            text-align: right;
        }

        .highlight-cell {
            color: var(--primary);
            font-weight: 600;
        }

        .savings-row {
            background: rgba(0, 212, 255, 0.05);
        }

        .savings-row td {
            font-size: 1.1rem;
        }

        .specs-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 1.5rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .spec-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 1.5rem;
            text-align: center;
        }

        .spec-value {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .spec-label {
            font-size: 0.9rem;
        }

        .spec-note {
            text-align: center;
            margin-top: 1.5rem;
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .cta-card {
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 4rem 2rem;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-card h2 {
            margin-bottom: 1rem;
        }

        .cta-card p {
            max-width: 600px;
            margin: 0 auto 2rem;
            font-size: 1.1rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .features-grid-5 {
                grid-template-columns: repeat(3, 1fr);
            }

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

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

        @media (max-width: 992px) {
            .features-grid-5 {
                grid-template-columns: repeat(2, 1fr);
            }

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

            .fashion-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .workflow-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .features-grid-5,
            .problem-grid,
            .fashion-grid,
            .workflow-grid,
            .specs-grid {
                grid-template-columns: 1fr;
            }
        }

/* === apparel-design === */
/* Page-specific styles isolated to prevent affecting other pages */
        .apparel-hero {
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
        }
        .apparel-card {
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        .apparel-card:hover {
            transform: translateY(-4px);
        }
        .apparel-feature-icon {
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
        }
        .apparel-stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }
        .apparel-workflow-step {
            position: relative;
        }
        .apparel-workflow-step::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -2rem;
            width: 2rem;
            height: 2px;
            background: linear-gradient(90deg, rgba(0, 212, 255, 0.5), rgba(124, 58, 237, 0.5));
        }
        .apparel-workflow-step:last-child::after {
            display: none;
        }
        @media (max-width: 768px) {
            .apparel-workflow-step::after {
                display: none;
            }
        }

/* === data-dashboard === */
/* Page-specific styles isolated to prevent affecting other pages */
        .dashboard-hero {
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
        }
        .dashboard-card {
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        .dashboard-card:hover {
            transform: translateY(-4px);
        }
        .dashboard-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(0, 212, 255, 0.1);
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 50px;
            font-size: 0.85rem;
            color: #00d4ff;
        }
        .dashboard-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background: #00d4ff;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
        .dashboard-stat {
            position: relative;
            overflow: hidden;
        }
        .dashboard-stat::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
            animation: shimmer 3s infinite;
        }
        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }
        .dashboard-platform-card {
            position: relative;
            overflow: hidden;
        }
        .dashboard-platform-card::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.1), transparent);
            border-radius: 50%;
            transform: translate(30%, -30%);
        }

/* === image-processor === */
/* Page-specific styles isolated to prevent affecting other pages */
        .tukk-hero {
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
        }
        .tukk-card {
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        .tukk-card:hover {
            transform: translateY(-4px);
        }
        .tukk-feature-icon {
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
        }
        .tukk-comparison {
            position: relative;
            overflow: hidden;
        }
        .tukk-comparison::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent 0%, rgba(0, 212, 255, 0.1) 50%, transparent 100%);
            pointer-events: none;
        }
        .tukk-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(0, 212, 255, 0.1);
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 50px;
            font-size: 0.85rem;
            color: #00d4ff;
        }
        .tukk-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background: #00d4ff;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

/* === procurement-platform === */
/* Page-specific styles isolated to prevent affecting other pages */
        .procurement-hero {
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
        }
        .procurement-card {
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        .procurement-card:hover {
            transform: translateY(-4px);
        }
        .procurement-feature-icon {
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
        }
        .procurement-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(0, 212, 255, 0.1);
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 50px;
            font-size: 0.85rem;
            color: #00d4ff;
        }
        .procurement-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background: #00d4ff;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
        .procurement-workflow {
            position: relative;
        }
        .procurement-workflow::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -2rem;
            width: 2rem;
            height: 2px;
            background: linear-gradient(90deg, rgba(0, 212, 255, 0.5), rgba(124, 58, 237, 0.5));
        }
        .procurement-workflow:last-child::after {
            display: none;
        }
        @media (max-width: 768px) {
            .procurement-workflow::after {
                display: none;
            }
        }
        .procurement-pain-point {
            position: relative;
            padding-left: 1.5rem;
        }
        .procurement-pain-point::before {
            content: '⚠';
            position: absolute;
            left: 0;
            color: #f59e0b;
            font-weight: bold;
        }

/* === retail-platform === */
/* Page-specific styles isolated to prevent affecting other pages */
        .retail-hero {
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
        }
        .retail-card {
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        .retail-card:hover {
            transform: translateY(-4px);
        }
        .retail-feature-icon {
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
        }
        .retail-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(0, 212, 255, 0.1);
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 50px;
            font-size: 0.85rem;
            color: #00d4ff;
        }
        .retail-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background: #00d4ff;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
        .retail-ecosystem-node {
            position: relative;
        }
        .retail-ecosystem-arrow {
            position: absolute;
            top: 50%;
            right: -1.5rem;
            width: 1.5rem;
            height: 2px;
            background: linear-gradient(90deg, rgba(0, 212, 255, 0.5), rgba(124, 58, 237, 0.5));
        }
        .retail-ecosystem-node:last-child .retail-ecosystem-arrow {
            display: none;
        }
        @media (max-width: 768px) {
            .retail-ecosystem-arrow {
                display: none;
            }
        }

/* === trend-analyzer === */
/* Page-specific styles isolated to prevent affecting other pages */
        .trend-hero {
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
        }
        .trend-card {
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        .trend-card:hover {
            transform: translateY(-4px);
        }
        .trend-feature-icon {
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
        }
        .trend-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(0, 212, 255, 0.1);
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 50px;
            font-size: 0.85rem;
            color: #00d4ff;
        }
        .trend-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background: #00d4ff;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
        .trend-data-flow {
            position: relative;
            overflow: hidden;
        }
        .trend-data-flow::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
            animation: flow 3s infinite;
        }
        @keyframes flow {
            0% { left: -100%; }
            100% { left: 100%; }
        }

/* === services === */
/* Services Page - Magazine/Timeline Layout */
        .services-hero {
            padding: 8rem 2rem 4rem;
            text-align: center;
            min-height: 60vh;
            display: flex;
            align-items: center;
            position: relative;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(0, 212, 255, 0.1);
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 50px;
            font-size: 0.85rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .hero-content h1 span {
            display: block;
        }

        .hero-content p {
            font-size: 1.15rem;
            line-height: 1.7;
            color: var(--text-secondary);
        }

        .services-intro {
            padding: 4rem 2rem;
            background: linear-gradient(180deg, transparent 0%, rgba(0, 212, 255, 0.03) 100%);
        }

        .intro-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 4rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .intro-number {
            font-size: 6rem;
            font-weight: 800;
            color: transparent;
            -webkit-text-stroke: 1px var(--primary);
            line-height: 1;
        }

        .intro-text h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .intro-text p {
            color: var(--text-secondary);
            line-height: 1.8;
        }

        .services-showcase {
            padding: 6rem 2rem;
        }

        .showcase-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-bottom: 6rem;
            align-items: center;
        }

        .showcase-item:nth-child(even) {
            direction: rtl;
        }

        .showcase-item:nth-child(even) > * {
            direction: ltr;
        }

        .showcase-visual {
            position: relative;
            aspect-ratio: 1;
            background: var(--bg-card);
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .showcase-visual svg {
            width: 60%;
            height: 60%;
        }

        .showcase-number {
            position: absolute;
            top: 2rem;
            left: 2rem;
            width: 60px;
            height: 60px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--bg-dark);
        }

        .showcase-content h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .showcase-content > p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .feature-list {
            list-style: none;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 0;
            border-bottom: 1px solid var(--border);
        }

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

        .feature-list .material-icons-round {
            color: var(--primary);
        }

        .services-flow {
            padding: 6rem 2rem;
            background: var(--bg-card);
        }

        .flow-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .flow-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .flow-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        .flow-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 15%;
            right: 15%;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }

        .flow-step {
            text-align: center;
            flex: 1;
            position: relative;
            z-index: 1;
        }

        .flow-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: var(--bg-dark);
            border: 2px solid var(--border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .flow-icon .material-icons-round {
            font-size: 32px;
            color: var(--primary);
        }

        .flow-step h4 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .flow-step p {
            font-size: 0.85rem;
            color: var(--text-secondary);
            max-width: 150px;
            margin: 0 auto;
        }

        /* CTA Section */
        .cta-section {
            padding: 8rem 2rem;
            text-align: center;
        }

        .cta-card {
            max-width: 700px;
            margin: 0 auto;
            padding: 4rem;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: 24px;
        }

        .cta-card h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta-card p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
        }

        @media (max-width: 992px) {
            .intro-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .showcase-item,
            .showcase-item:nth-child(even) {
                grid-template-columns: 1fr;
                direction: ltr;
            }

            .flow-steps {
                flex-wrap: wrap;
                gap: 2rem;
            }

            .flow-steps::before {
                display: none;
            }

            .flow-step {
                flex: 0 0 calc(50% - 1rem);
            }
        }

        @media (max-width: 768px) {
            .services-hero {
                padding: 6rem 1.5rem 3rem;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .flow-step {
                flex: 0 0 100%;
            }
        }

/* === cases === */
/* Cases Page - Portfolio/Editorial Layout */
        .page-hero {
            padding: 8rem 2rem 4rem;
            text-align: center;
            background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.02) 100%);
        }

        .hero-content {
            max-width: 700px;
            margin: 0 auto;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border);
            border-radius: 50px;
            font-size: 0.85rem;
            margin-bottom: 1.5rem;
        }

        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .hero-content p {
            font-size: 1.15rem;
            color: var(--text-secondary);
        }

        /* Stats Section */
        .stats-row {
            display: flex;
            justify-content: center;
            gap: 4rem;
            padding: 3rem 2rem;
            background: var(--bg-card);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            flex-wrap: wrap;
        }

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

        .stat-item .stat-value {
            font-size: 2.5rem;
            font-weight: 700;
            display: block;
        }

        .stat-item .stat-label {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        /* Featured Case */
        .featured-case {
            padding: 6rem 2rem;
        }

        .case-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .case-header h2 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .case-header p {
            color: var(--text-secondary);
        }

        .featured-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 24px;
            overflow: hidden;
            max-width: 900px;
            margin: 0 auto;
        }

        .featured-banner {
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
            padding: 3rem;
            text-align: center;
        }

        .brand-logo {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .brand-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 0.8rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 6px;
            font-size: 0.8rem;
        }

        .case-body {
            padding: 3rem;
        }

        .metrics-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 2.5rem;
        }

        .metric-box {
            text-align: center;
            padding: 1.5rem;
            background: var(--bg-dark);
            border-radius: 12px;
        }

        .metric-box .value {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            display: block;
        }

        .metric-box .label {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        .case-details {
            margin-bottom: 2rem;
        }

        .detail-block {
            margin-bottom: 2rem;
        }

        .detail-block h4 {
            font-size: 1.1rem;
            margin-bottom: 0.75rem;
        }

        .detail-block p {
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* Other Cases */
        .cases-grid {
            padding: 6rem 2rem;
            background: var(--bg-card);
        }

        .grid-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .grid-header h2 {
            font-size: 1.75rem;
            margin-bottom: 0.5rem;
        }

        .cases-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .case-item {
            background: var(--bg-dark);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 2rem;
            transition: all 0.3s ease;
        }

        .case-item:hover {
            border-color: var(--primary);
            transform: translateY(-4px);
        }

        .case-item h4 {
            font-size: 1.1rem;
            margin-bottom: 0.75rem;
        }

        .case-item p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-bottom: 1rem;
        }

        .case-tags {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .case-tag {
            padding: 0.3rem 0.6rem;
            background: rgba(0, 212, 255, 0.1);
            border-radius: 4px;
            font-size: 0.75rem;
            color: var(--primary);
        }

        /* Testimonials */
        .testimonials-section {
            padding: 6rem 2rem;
        }

        .testimonial-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .testimonial-header h2 {
            font-size: 1.75rem;
            margin-bottom: 0.5rem;
        }

        .testimonial-header p {
            color: var(--text-secondary);
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .testimonial-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 2rem;
        }

        .quote-icon {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .testimonial-text {
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 48px;
            height: 48px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
        }

        .author-info h4 {
            font-size: 0.95rem;
            margin-bottom: 0.25rem;
        }

        .author-info p {
            font-size: 0.8rem;
            color: var(--text-secondary);
        }

        /* CTA Section */
        .cta-section {
            padding: 6rem 2rem;
            text-align: center;
            background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.02) 100%);
        }

        .cta-content {
            max-width: 500px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: 1.75rem;
            margin-bottom: 0.75rem;
        }

        .cta-content p {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
        }

        @media (max-width: 992px) {
            .metrics-row {
                grid-template-columns: 1fr;
            }

            .cases-list {
                grid-template-columns: 1fr;
            }

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

        @media (max-width: 768px) {
            .stats-row {
                gap: 2rem;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }
        }

/* === content-marketing === */
/* Content Marketing Page - Media/Broadcasting Layout */
        .page-hero {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, rgba(255, 165, 0, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
        }

        .hero-content {
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 1rem;
            background: rgba(255, 165, 0, 0.2);
            border-radius: 50px;
            font-size: 0.85rem;
            color: #ffa500;
            margin-bottom: 1.5rem;
        }

        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .hero-content p {
            font-size: 1.15rem;
            color: var(--text-secondary);
        }

        /* Content Services */
        .services-block {
            padding: 6rem 2rem;
        }

        .service-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            margin-bottom: 5rem;
        }

        .service-row:nth-child(even) {
            direction: rtl;
        }

        .service-row:nth-child(even) > * {
            direction: ltr;
        }

        .service-visual {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 20px;
            aspect-ratio: 16/10;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .service-visual svg {
            width: 50%;
            height: 50%;
        }

        .service-label {
            position: absolute;
            top: 1.5rem;
            left: 1.5rem;
            padding: 0.4rem 0.8rem;
            background: rgba(255, 165, 0, 0.2);
            border-radius: 6px;
            font-size: 0.8rem;
            color: #ffa500;
        }

        .service-info h3 {
            font-size: 1.75rem;
            margin-bottom: 1rem;
        }

        .service-info > p {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .service-features {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .service-features li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--border);
        }

        .service-features li:last-child {
            border-bottom: none;
        }

        .service-features .material-icons-round {
            color: #ffa500;
        }

        /* Video Section */
        .video-section {
            background: var(--bg-card);
            padding: 6rem 2rem;
        }

        .video-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .video-header h2 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .video-header p {
            color: var(--text-secondary);
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .video-card {
            background: var(--bg-dark);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 1.5rem;
            text-align: center;
        }

        .video-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1rem;
            background: rgba(255, 165, 0, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .video-icon .material-icons-round {
            font-size: 28px;
            color: #ffa500;
        }

        .video-card h4 {
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }

        .video-card p {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        /* Capabilities Banner */
        .capabilities-banner {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, rgba(255, 165, 0, 0.08) 0%, transparent 100%);
        }

        .banner-grid {
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
            max-width: 1000px;
            margin: 0 auto;
        }

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

        .banner-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: #ffa500;
            margin-bottom: 0.25rem;
        }

        .banner-label {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        /* CTA Section */
        .cta-section {
            padding: 6rem 2rem;
            text-align: center;
        }

        .cta-banner {
            max-width: 700px;
            margin: 0 auto;
            padding: 3rem;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 20px;
            border-top: 4px solid #ffa500;
        }

        .cta-banner h2 {
            font-size: 1.75rem;
            margin-bottom: 0.75rem;
        }

        .cta-banner p {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
        }

        @media (max-width: 992px) {
            .service-row,
            .service-row:nth-child(even) {
                grid-template-columns: 1fr;
                direction: ltr;
            }

            .video-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

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

            .banner-grid {
                gap: 2rem;
            }
        }

/* === product-design === */
/* Product Design Page - Creative Studio Layout */
        .page-hero {
            padding: 8rem 2rem 4rem;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 70vh;
            position: relative;
            overflow: hidden;
        }

        .hero-studio {
            display: flex;
            align-items: center;
            gap: 4rem;
            max-width: 1200px;
        }

        .studio-content {
            flex: 1;
        }

        .studio-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(0, 255, 170, 0.1);
            border: 1px solid rgba(0, 255, 170, 0.3);
            border-radius: 50px;
            font-size: 0.85rem;
            color: #00ffaa;
            margin-bottom: 1.5rem;
        }

        .studio-content h1 {
            font-size: 3rem;
            line-height: 1.1;
            margin-bottom: 1rem;
        }

        .studio-content p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        .studio-visual {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .design-canvas {
            width: 350px;
            height: 350px;
            background: var(--bg-card);
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 255, 170, 0.1);
        }

        .design-canvas svg {
            width: 70%;
            height: 70%;
        }

        /* Features Section */
        .features-section {
            padding: 6rem 2rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

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

        .section-header p {
            color: var(--text-secondary);
        }

        /* Design Steps */
        .design-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto 6rem;
        }

        .step-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
        }

        .step-card:hover {
            transform: translateY(-8px);
            border-color: #00ffaa;
        }

        .step-number {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #00ffaa, #00d4ff);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1rem;
            color: var(--bg-dark);
        }

        .step-icon {
            width: 70px;
            height: 70px;
            margin: 1rem auto 1.5rem;
            background: rgba(0, 255, 170, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .step-icon .material-icons-round {
            font-size: 32px;
            color: #00ffaa;
        }

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

        .step-card p {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        /* Product Cards */
        .product-showcase {
            background: var(--bg-card);
            padding: 6rem 2rem;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .product-card {
            background: var(--bg-dark);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.3s ease;
        }

        .product-card:hover {
            border-color: #00ffaa;
        }

        .product-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .product-card h3 .material-icons-round {
            color: #00ffaa;
        }

        .product-card > p {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .feature-items {
            list-style: none;
        }

        .feature-items li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--border);
        }

        .feature-items li:last-child {
            border-bottom: none;
        }

        .feature-items .material-icons-round {
            color: #00ffaa;
            font-size: 18px;
            flex-shrink: 0;
        }

        /* Stats Section */
        .stats-section {
            padding: 6rem 2rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .stat-box {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
        }

        .stat-box .stat-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: #00ffaa;
            margin-bottom: 0.5rem;
        }

        .stat-box .stat-label {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        /* CTA Section */
        .cta-section {
            padding: 6rem 2rem;
            text-align: center;
            background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 170, 0.03) 100%);
        }

        .cta-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .cta-content p {
            color: var(--text-secondary);
            margin-bottom: 2rem;
        }

        @media (max-width: 992px) {
            .hero-studio {
                flex-direction: column;
                text-align: center;
            }

            .design-steps {
                grid-template-columns: repeat(2, 1fr);
            }

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

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .design-steps {
                grid-template-columns: 1fr;
            }

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

            .studio-content h1 {
                font-size: 2.5rem;
            }
        }

/* === supply-chain === */
/* Supply Chain Page - Technical/Industrial Layout */
        .page-hero {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(0, 0, 0, 0) 100%);
        }

        .hero-header {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 1rem;
            background: rgba(124, 58, 237, 0.2);
            border-radius: 50px;
            font-size: 0.85rem;
            color: #a78bfa;
            margin-bottom: 1.5rem;
        }

        .hero-header h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .hero-header p {
            font-size: 1.15rem;
            color: var(--text-secondary);
        }

        /* Stats Bar */
        .stats-bar {
            display: flex;
            justify-content: center;
            gap: 3rem;
            padding: 2rem;
            background: var(--bg-card);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            flex-wrap: wrap;
        }

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

        .stat-value {
            font-size: 2rem;
            font-weight: 700;
            color: #a78bfa;
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        /* Main Content */
        .content-section {
            padding: 5rem 2rem;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .section-title p {
            color: var(--text-secondary);
        }

        /* Team Cards */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            max-width: 1000px;
            margin: 0 auto 4rem;
        }

        .team-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .team-card:hover {
            border-color: #a78bfa;
            transform: translateY(-4px);
        }

        .team-icon {
            width: 50px;
            height: 50px;
            margin: 0 auto 1rem;
            background: rgba(124, 58, 237, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .team-icon .material-icons-round {
            color: #a78bfa;
        }

        .team-card h4 {
            font-size: 1rem;
            margin-bottom: 0.25rem;
        }

        .team-card p {
            font-size: 0.8rem;
            color: #a78bfa;
        }

        /* Process Timeline */
        .process-timeline {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            padding: 2rem 0;
        }

        .timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg, #a78bfa, #7c3aed);
            transform: translateX(-50%);
        }

        .timeline-item {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
            position: relative;
        }

        .timeline-item:nth-child(odd) {
            flex-direction: row-reverse;
        }

        .timeline-content {
            width: 45%;
            padding: 1.5rem;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
        }

        .timeline-dot {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 20px;
            background: var(--bg-dark);
            border: 3px solid #a78bfa;
            border-radius: 50%;
            z-index: 1;
        }

        .timeline-content h4 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .timeline-content h4 .material-icons-round {
            font-size: 20px;
            color: #a78bfa;
        }

        .timeline-content p {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        /* Capabilities Grid */
        .capabilities-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .capability-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
        }

        .capability-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1rem;
            background: rgba(124, 58, 237, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .capability-icon .material-icons-round {
            font-size: 28px;
            color: #a78bfa;
        }

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

        .capability-card p {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        /* CTA Section */
        .cta-section {
            padding: 5rem 2rem;
            text-align: center;
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, transparent 100%);
        }

        .cta-box {
            max-width: 600px;
            margin: 0 auto;
            padding: 3rem;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            border-left: 4px solid #a78bfa;
        }

        .cta-box h2 {
            font-size: 1.75rem;
            margin-bottom: 0.75rem;
        }

        .cta-box p {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
        }

        @media (max-width: 992px) {
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .capabilities-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .timeline-line {
                left: 20px;
            }

            .timeline-item,
            .timeline-item:nth-child(odd) {
                flex-direction: row;
                padding-left: 50px;
            }

            .timeline-content {
                width: 100%;
            }

            .timeline-dot {
                left: 20px;
            }
        }

        @media (max-width: 768px) {
            .stats-bar {
                gap: 1.5rem;
            }

            .team-grid,
            .capabilities-grid {
                grid-template-columns: 1fr;
            }
        }

