/*
Theme Name: ShatarupaX AI Labs
Theme URI: https://dodgerblue-cattle-957330.hostingersite.com
Author: ShatarupaX AI Labs
Author URI: https://dodgerblue-cattle-957330.hostingersite.com
Description: Enterprise AI Solutions & Products - Official WordPress Theme for ShatarupaX AI Labs
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: shatarupax
Tags: dark, ai, enterprise, technology, custom-colors, custom-logo, custom-menu, featured-images, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready
*/

/* ==========================================
   GLOBAL RESET & BASE
   ========================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #7C3AED;
    --primary-light: #9D5FFF;
    --primary-dark: #5B21B6;
    --accent: #06B6D4;
    --accent-light: #22D3EE;
    --bg-dark: #050816;
    --bg-card: #0D1117;
    --bg-card2: #111827;
    --bg-section: #0a0f1e;
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    --border: rgba(124, 58, 237, 0.2);
    --border-light: rgba(255,255,255,0.08);
    --gradient-primary: linear-gradient(135deg, #7C3AED 0%, #06B6D4 100%);
    --gradient-bg: linear-gradient(180deg, #050816 0%, #0a0f1e 100%);
    --shadow-glow: 0 0 40px rgba(124, 58, 237, 0.3);
    --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
    --radius: 12px;
    --radius-lg: 20px;
    --font-heading: 'Plus Jakarta Sans', 'Outfit', sans-serif;
    --font-body: 'DM Sans', 'Nunito', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

ul { list-style: none; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.3);
    color: var(--primary-light);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
}

.badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary-light);
    border-radius: 50%;
    display: inline-block;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    margin: 16px 0 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Gradient text */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
    border-color: var(--primary-light);
    color: var(--primary-light);
    background: rgba(124, 58, 237, 0.08);
}

/* ==========================================
   HEADER / NAVIGATION
   ========================================== */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 8, 22, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

#site-header.scrolled {
    background: rgba(5, 8, 22, 0.97);
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 32px;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 900;
    color: #fff;
    font-family: var(--font-heading);
    position: relative;
    overflow: hidden;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.logo-tagline {
    font-size: 0.6875rem;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.05em;
}

/* Primary Navigation */
.primary-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
    font-family: var(--font-heading);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: rgba(255,255,255,0.06);
}

.nav-link .caret {
    font-size: 0.7rem;
    opacity: 0.6;
    transition: var(--transition);
}

.nav-item:hover .caret {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: var(--transition);
    z-index: 100;
    padding: 8px;
}

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

.dropdown a {
    display: block;
    padding: 10px 16px;
    color: var(--text-secondary);
    font-size: 0.875rem;
    border-radius: 8px;
    transition: var(--transition);
}

.dropdown a:hover {
    color: var(--text-primary);
    background: rgba(124, 58, 237, 0.1);
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    border-radius: 8px;
    transition: var(--transition);
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(124, 58, 237, 0.2) 0%, transparent 60%),
                radial-gradient(ellipse 60% 40% at 80% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
                var(--bg-dark);
}

/* Animated background particles */
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-bg::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: floatBg 8s ease-in-out infinite;
}

.hero-bg::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
    bottom: -100px;
    left: -50px;
    animation: floatBg 10s ease-in-out infinite reverse;
}

@keyframes floatBg {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -30px); }
}

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

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

.hero-badge {
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-title .accent-line {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* Hero stats */
.hero-stats {
    display: flex;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-visual-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 500px;
    margin: 0 auto;
}

.ai-chip-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-chip {
    width: 180px;
    height: 180px;
    background: var(--gradient-primary);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    font-family: var(--font-heading);
    box-shadow: 0 0 80px rgba(124, 58, 237, 0.5), 0 0 40px rgba(124, 58, 237, 0.3);
    animation: pulse-chip 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes pulse-chip {
    0%, 100% { transform: scale(1); box-shadow: 0 0 80px rgba(124, 58, 237, 0.5), 0 0 40px rgba(124, 58, 237, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 0 120px rgba(124, 58, 237, 0.6), 0 0 60px rgba(124, 58, 237, 0.4); }
}

/* Floating feature cards around chip */
.feature-card {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-size: 0.8125rem;
    font-weight: 600;
    font-family: var(--font-heading);
    animation: float 5s ease-in-out infinite;
    box-shadow: var(--shadow-card);
}

.feature-card .fc-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.feature-card:nth-child(1) { top: 5%; left: 5%; animation-delay: 0s; }
.feature-card:nth-child(2) { top: 5%; right: 5%; animation-delay: 1s; }
.feature-card:nth-child(3) { bottom: 5%; left: 5%; animation-delay: 2s; }
.feature-card:nth-child(4) { bottom: 5%; right: 5%; animation-delay: 0.5s; }
.feature-card:nth-child(5) { top: 50%; left: -5%; transform: translateY(-50%); animation-delay: 1.5s; }
.feature-card:nth-child(6) { top: 50%; right: -5%; transform: translateY(-50%); animation-delay: 2.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.feature-card:nth-child(5),
.feature-card:nth-child(6) {
    animation: floatX 5s ease-in-out infinite;
}
@keyframes floatX {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(-6px); }
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-section {
    padding: 100px 0;
    background: var(--bg-section);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(124, 58, 237, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: rgba(124, 58, 237, 0.25);
    border-color: rgba(124, 58, 237, 0.4);
    transform: scale(1.1);
}

.service-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.service-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.service-feature::before {
    content: '';
    width: 16px;
    height: 16px;
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3 3 7-6' stroke='%2306B6D4' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
}

.learn-more-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-light);
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: var(--transition);
}

.learn-more-link::after {
    content: '→';
    transition: var(--transition);
}

.learn-more-link:hover {
    color: var(--accent-light);
}

.learn-more-link:hover::after {
    transform: translateX(4px);
}

/* ==========================================
   PRODUCTS SECTION
   ========================================== */
.products-section {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 60px rgba(124, 58, 237, 0.15);
}

.product-card > * {
    position: relative;
    z-index: 1;
}

.product-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
    transition: var(--transition);
}

.product-card:hover .product-icon-wrap {
    transform: scale(1.1);
}

.product-name {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.product-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 20px;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-section {
    padding: 100px 0;
    background: var(--bg-section);
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 16px 0 24px;
}

.about-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.0625rem;
    margin-bottom: 32px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.af-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.af-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    font-family: var(--font-heading);
}

.af-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Stats grid in about */
.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.astat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    transition: var(--transition);
}

.astat-card:hover {
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-4px);
}

.astat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.astat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.astat-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ==========================================
   INDUSTRIES SECTION
   ========================================== */
.industries-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.industry-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.industry-card:hover {
    border-color: rgba(124, 58, 237, 0.3);
    background: rgba(124, 58, 237, 0.05);
    transform: translateY(-4px);
}

.industry-icon {
    font-size: 1.75rem;
    margin-bottom: 10px;
}

.industry-name {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
    font-family: var(--font-heading);
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    padding: 100px 0;
    background: var(--bg-section);
    position: relative;
    overflow: hidden;
}

.cta-inner {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-inner h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 16px 0 20px;
    line-height: 1.15;
}

.cta-inner p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   FOOTER
   ========================================== */
#site-footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-light);
    padding: 80px 0 40px;
}

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

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-top: 16px;
    margin-bottom: 24px;
    max-width: 280px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    transition: var(--transition);
}

.social-link:hover {
    background: rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.3);
    color: var(--primary-light);
}

.footer-col h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
    font-size: 0.875rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary-light);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-desc, .hero-actions { max-width: 100%; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .industries-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .primary-nav, .header-cta .btn:not(.btn-primary) { display: none; }
    .menu-toggle { display: flex; }
    .services-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================
   WORDPRESS SPECIFIC
   ========================================== */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.875rem; color: var(--text-muted); margin-top: 8px; }
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { display: block; margin: 0 auto 16px; }
.sticky { border-left: 3px solid var(--primary); }
.bypostauthor { }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gallery-item a { display: block; border-radius: 8px; overflow: hidden; }

/* Page & Post Content */
.entry-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 80px 24px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.entry-content h1, .entry-content h2, .entry-content h3 {
    color: var(--text-primary);
    margin: 32px 0 16px;
}

.entry-content p { margin-bottom: 20px; }
.entry-content a { color: var(--primary-light); }
.entry-content a:hover { color: var(--accent-light); }
.entry-content ul, .entry-content ol { margin: 16px 0 20px 24px; }
.entry-content li { margin-bottom: 8px; list-style: disc; }
.entry-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 16px 24px;
    margin: 24px 0;
    background: rgba(124, 58, 237, 0.06);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--text-primary);
}

/* Mobile Navigation */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-light);
    padding: 20px 24px;
    flex-direction: column;
    gap: 4px;
    z-index: 999;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
}

.mobile-menu.open { display: flex; }

.mobile-nav-link {
    display: block;
    padding: 12px 16px;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
    font-family: var(--font-heading);
}

.mobile-nav-link:hover {
    color: var(--text-primary);
    background: rgba(124, 58, 237, 0.1);
}

.mobile-menu-cta {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ==========================================
   HOSTINGER FIX PACK: LIGHT PROFESSIONAL THEME
   ========================================== */
:root{--primary:#2563eb;--primary-light:#4f46e5;--primary-dark:#1e3a8a;--accent:#06b6d4;--accent-light:#22c55e;--bg-dark:#f8fbff;--bg-card:#ffffff;--bg-card2:#ffffff;--bg-section:#f1f7ff;--text-primary:#071632;--text-secondary:#334155;--text-muted:#64748b;--border:rgba(37,99,235,.14);--border-light:rgba(37,99,235,.16);--gradient-primary:linear-gradient(135deg,#2563eb 0%,#7c3aed 56%,#22c55e 100%);--gradient-bg:linear-gradient(180deg,#ffffff 0%,#eef7ff 100%);--shadow-card:0 14px 40px rgba(15,23,42,.08);--shadow-glow:0 0 45px rgba(37,99,235,.18)}
body{background:#f8fbff;color:var(--text-primary)}
#site-header{background:rgba(255,255,255,.9);border-bottom:1px solid rgba(37,99,235,.12);box-shadow:0 8px 30px rgba(15,23,42,.06)}#site-header.scrolled{background:rgba(255,255,255,.97);box-shadow:0 10px 35px rgba(15,23,42,.1)}
.nav-link,.logo-name,.logo-tagline{color:var(--text-primary)}.btn-outline{color:var(--text-primary);border-color:rgba(15,23,42,.18);background:#fff}.btn-outline:hover{background:#eef4ff;color:#2563eb}.dropdown{background:#fff;border:1px solid rgba(37,99,235,.15);box-shadow:0 18px 45px rgba(15,23,42,.12)}.dropdown a{color:#0f172a}.mobile-menu{background:#fff}.mobile-nav-link{color:#0f172a}
.hero-section{background:linear-gradient(180deg,#f8fbff,#eef7ff);padding-top:120px}.hero-bg{background:radial-gradient(circle at 20% 20%,rgba(37,99,235,.16),transparent 35%),radial-gradient(circle at 85% 15%,rgba(124,58,237,.13),transparent 34%),radial-gradient(circle at 80% 85%,rgba(34,197,94,.10),transparent 32%)}.hero-title,.section-title,.service-name,.product-name{color:#071632}.hero-desc,.section-subtitle,.service-desc,.product-desc,.about-content p{color:#334155}.feature-card,.service-card,.product-card,.astat-card,.industry-card{background:rgba(255,255,255,.82);border:1px solid rgba(37,99,235,.12);box-shadow:var(--shadow-card);color:#071632}.ai-chip{box-shadow:0 18px 55px rgba(37,99,235,.24)}
.services-section,.products-section,.industries-section,.about-section{background:#f8fbff}.cta-section{background:linear-gradient(135deg,#eef7ff,#fff)}.footer-grid{border-top:1px solid rgba(37,99,235,.12)}#site-footer{background:#071632;color:#dbeafe}.footer-links a{color:#bfdbfe}.footer-col h4,.footer-brand p{color:#fff}
.sx-inner-page{padding-top:72px;background:#f8fbff}.sx-page-hero{padding:70px 0;background:linear-gradient(135deg,#eff6ff,#ffffff 52%,#f0fdf4);border-bottom:1px solid rgba(37,99,235,.12)}.sx-page-hero h1{font-size:clamp(2.2rem,4vw,4rem);max-width:850px;margin:18px 0 18px;color:#071632}.sx-page-hero p{font-size:1.18rem;max-width:780px;color:#334155}.sx-breadcrumb{font-size:.9rem;color:#2563eb;font-weight:700;margin-bottom:18px}.sx-hero-tags{display:flex;gap:14px;flex-wrap:wrap;margin-top:28px}.sx-hero-tags span{background:#fff;border:1px solid rgba(37,99,235,.15);padding:10px 16px;border-radius:999px;color:#1e3a8a;font-weight:700}.sx-content-section{padding:70px 0}.sx-two-col{display:grid;grid-template-columns:1.5fr .75fr;gap:28px}.sx-main-card,.sx-side-card,.sx-info-row,.sx-resource-card{background:#fff;border:1px solid rgba(37,99,235,.13);box-shadow:var(--shadow-card);border-radius:22px;padding:32px}.sx-main-card h2{font-size:1.8rem;margin:28px 0 16px;color:#071632}.sx-main-card p{font-size:1.05rem;color:#334155;margin-bottom:16px}.sx-side-card{height:max-content;position:sticky;top:100px}.sx-side-card h3{font-size:1.5rem;margin-bottom:14px}.sx-mini-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;margin-top:18px}.sx-mini-grid div,.sx-check-list li{background:#f1f7ff;border:1px solid rgba(37,99,235,.12);border-radius:14px;padding:14px;font-weight:700;color:#102044}.sx-about-layout{display:grid;grid-template-columns:1.25fr .85fr;gap:28px}.sx-info-row{margin-bottom:22px}.sx-info-row b{font-size:1.35rem;color:#071632}.sx-info-row p{margin-top:10px;color:#334155}.sx-check-list{display:grid;gap:12px}.sx-stats-row{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin:34px 0}.sx-stats-row div{background:#fff;border:1px solid rgba(37,99,235,.13);border-radius:20px;padding:24px;text-align:center;box-shadow:var(--shadow-card)}.sx-stats-row strong{display:block;font-size:2rem;color:#4f46e5}.sx-stats-row span{color:#334155;font-weight:700}.sx-mission{display:grid;grid-template-columns:1fr 1fr;gap:24px}.sx-mission>div{background:linear-gradient(135deg,#ffffff,#eff6ff);border:1px solid rgba(37,99,235,.13);border-radius:22px;padding:34px}.sx-contact-form{display:grid;gap:14px}.sx-contact-form input,.sx-contact-form select,.sx-contact-form textarea{width:100%;border:1px solid rgba(37,99,235,.18);border-radius:14px;padding:15px 16px;font:inherit;color:#071632;background:#fff}.sx-resource-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}.sx-resource-card h3{font-size:1.35rem;margin:14px 0;color:#071632}.sx-resource-card p{color:#334155;margin-bottom:20px}
@media(max-width:1024px){.sx-two-col,.sx-about-layout,.sx-mission{grid-template-columns:1fr}.sx-resource-grid{grid-template-columns:repeat(2,1fr)}.sx-stats-row{grid-template-columns:repeat(2,1fr)}}@media(max-width:640px){.sx-resource-grid,.sx-mini-grid,.sx-stats-row{grid-template-columns:1fr}.sx-page-hero{padding:50px 0}.sx-main-card,.sx-side-card{padding:24px}}

/* ==========================================
   VERIFIED FINAL: Hero motion video + 4 products + mobile polish
   ========================================== */
.hero-grid{grid-template-columns:minmax(0,.86fr) minmax(480px,1.14fr);align-items:center;gap:34px}.hero-title{font-size:clamp(2.5rem,5vw,4.8rem);line-height:1.05;font-weight:900}.accent-line{display:block;background:linear-gradient(90deg,#2563eb,#7c3aed,#22c55e);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}.hero-video-visual{display:block}.hero-video-card{position:relative;border-radius:28px;overflow:hidden;min-height:420px;border:1px solid rgba(37,99,235,.18);background:#071632;box-shadow:0 24px 70px rgba(37,99,235,.22)}.hero-ai-video{width:100%;height:100%;min-height:420px;display:block;object-fit:cover;filter:saturate(1.16) contrast(1.04)}.hero-video-glow{position:absolute;inset:0;background:radial-gradient(circle at 50% 50%,rgba(6,182,212,.06),transparent 45%),linear-gradient(90deg,rgba(255,255,255,.10),transparent 24%);pointer-events:none}.motion-label{position:absolute;padding:14px 18px;border-radius:16px;background:rgba(5,13,36,.74);border:1px solid rgba(125,211,252,.55);box-shadow:0 0 28px rgba(37,99,235,.35);color:#fff;font-size:1.04rem;line-height:1.22;text-align:center;backdrop-filter:blur(10px);animation:heroFloat 4.5s ease-in-out infinite}.motion-label strong{font-weight:900;text-shadow:0 2px 12px rgba(0,0,0,.55)}.label-workflow{left:5%;top:17%}.label-models{left:35%;top:7%;font-size:1.1rem}.label-accuracy{right:10%;top:15%}.label-scale{right:5%;top:41%}.label-innovation{left:7%;bottom:15%}.label-ready{right:11%;bottom:13%}@keyframes heroFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}.products-grid{grid-template-columns:repeat(4,minmax(0,1fr));max-width:1180px;margin:0 auto}.product-card{min-height:230px}.primary-nav .nav-item:nth-child(4) .dropdown a:nth-child(n+5){display:none}@media(max-width:1180px){.hero-grid{grid-template-columns:1fr}.hero-video-card{min-height:360px}.hero-ai-video{min-height:360px}.products-grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:768px){.hero-section{padding-top:94px}.hero-title{font-size:clamp(2.2rem,12vw,3.3rem)}.hero-stats{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}.hero-video-card{min-height:280px;border-radius:22px}.hero-ai-video{min-height:280px}.motion-label{font-size:.76rem;padding:8px 10px;border-radius:12px}.label-workflow{left:4%;top:16%}.label-models{left:32%;top:6%}.label-accuracy{right:5%;top:15%}.label-scale{right:4%;top:42%}.label-innovation{left:5%;bottom:12%}.label-ready{right:6%;bottom:10%}.services-grid,.products-grid{grid-template-columns:1fr}.service-card,.product-card{min-height:auto}.header-cta{display:none}.primary-nav{display:none}.menu-toggle{display:flex}.hero-actions .btn{width:100%;justify-content:center}.container{padding-left:18px;padding-right:18px}}@media(max-width:420px){.hero-video-card{min-height:240px}.hero-ai-video{min-height:240px}.motion-label{font-size:.62rem;padding:7px 8px}.hero-stats{grid-template-columns:1fr}.hero-desc{font-size:1rem}.section-title{font-size:2rem}}
@media(max-width:1024px){.hero-video-visual{display:block!important}}

/* ==========================================
   FINAL REQUESTED UPDATE: Full-HD readability, visuals, footer/contact cleanup
   ========================================== */
html{font-size:18px}
body{
    background:
      radial-gradient(circle at 12% 10%, rgba(37,99,235,.14), transparent 32%),
      radial-gradient(circle at 88% 12%, rgba(124,58,237,.12), transparent 30%),
      radial-gradient(circle at 78% 86%, rgba(34,197,94,.10), transparent 34%),
      linear-gradient(180deg,#fbfdff 0%,#eef7ff 45%,#ffffff 100%);
}
.container{max-width:1580px;padding-left:40px;padding-right:40px}.container-wide{max-width:1720px}
#site-header .btn-primary{display:none!important}.header-inner{height:82px}.nav-link{font-size:1rem;font-weight:700}.dropdown a{font-size:.98rem}.logo-name{font-size:1.28rem}.logo-tagline{font-size:.8rem}.btn{font-size:1.02rem;padding:15px 28px;font-weight:800}
.hero-section{min-height:100vh;padding:132px 0 96px;background:transparent}.hero-title{font-size:clamp(3.4rem,5.3vw,6.15rem);letter-spacing:-.055em}.hero-desc{font-size:1.28rem;line-height:1.76;max-width:680px}.hero-grid{grid-template-columns:minmax(0,.9fr) minmax(620px,1.1fr);gap:54px}.hero-video-card{min-height:560px;border-radius:36px}.hero-ai-video{min-height:560px}.motion-label{font-size:1.17rem;padding:16px 20px}.stat-number{font-size:2.05rem}.stat-label{font-size:.95rem;color:#475569}.section-title{font-size:clamp(2.75rem,3.8vw,4.4rem)}.section-subtitle{font-size:1.25rem;max-width:860px;line-height:1.75}.services-section,.products-section,.about-section,.industries-section{background:transparent;padding:115px 0}.services-section::before{display:none}.services-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:32px}.products-grid{max-width:1450px;gap:32px}.service-card,.product-card{padding:0;overflow:hidden;border-radius:28px;background:rgba(255,255,255,.90);backdrop-filter:blur(14px);box-shadow:0 18px 48px rgba(15,23,42,.10);border:1px solid rgba(37,99,235,.16)}.service-card:hover,.product-card:hover{box-shadow:0 26px 70px rgba(37,99,235,.16);border-color:rgba(124,58,237,.28)}.service-icon,.product-icon-wrap{margin:28px 28px 16px}.service-name,.service-desc,.service-features,.service-card .learn-more-link,.product-name,.product-desc,.product-card .learn-more-link{margin-left:28px;margin-right:28px}.service-name{font-size:1.34rem}.product-name{font-size:1.28rem}.service-desc,.product-desc{font-size:1.05rem;line-height:1.72;color:#334155}.service-feature{font-size:.96rem}.learn-more-link{font-size:1rem;margin-bottom:30px}.sx-card-visual{height:175px;position:relative;display:flex;align-items:center;justify-content:center;overflow:hidden;background:linear-gradient(135deg,#eff6ff,#f5f3ff 56%,#ecfdf5);border-bottom:1px solid rgba(37,99,235,.12)}.sx-card-visual::before{content:"";position:absolute;inset:24px;border-radius:28px;background:linear-gradient(135deg,rgba(37,99,235,.18),rgba(124,58,237,.16),rgba(34,197,94,.13));filter:blur(3px)}.sx-card-visual::after{content:"";position:absolute;width:150px;height:150px;border-radius:50%;border:2px solid rgba(37,99,235,.26);box-shadow:0 0 45px rgba(124,58,237,.18)}.sx-card-visual span{position:relative;z-index:2;font-size:4.1rem;background:#fff;border:1px solid rgba(37,99,235,.16);box-shadow:0 16px 36px rgba(15,23,42,.12);width:105px;height:105px;border-radius:30px;display:flex;align-items:center;justify-content:center}.service-visual-ai-training-data-annotation{background:linear-gradient(135deg,#dbeafe,#eef2ff,#f0fdf4)}.service-visual-llm-optimization-fine-tuning{background:linear-gradient(135deg,#ede9fe,#dbeafe,#ecfeff)}.service-visual-enterprise-ai-automation{background:linear-gradient(135deg,#e0f2fe,#f5f3ff,#dcfce7)}.service-visual-healthcare-ai-solutions{background:linear-gradient(135deg,#ecfeff,#eff6ff,#dcfce7)}.service-visual-hr-recruitment-ai-solutions{background:linear-gradient(135deg,#f5f3ff,#eff6ff,#fff7ed)}.service-visual-ai-service-desk-automation{background:linear-gradient(135deg,#e0f2fe,#eff6ff,#f0fdf4)}.product-visual-shatarupax-enterprise-ai-platform{background:linear-gradient(135deg,#eef2ff,#dbeafe,#ecfdf5)}.product-visual-deployai{background:linear-gradient(135deg,#dbeafe,#ecfeff,#dcfce7)}.product-visual-clinicalai{background:linear-gradient(135deg,#ecfeff,#eff6ff,#dcfce7)}.product-visual-docai{background:linear-gradient(135deg,#fff7ed,#eff6ff,#e0f2fe)}
.sx-page-hero{background:radial-gradient(circle at 16% 20%,rgba(37,99,235,.16),transparent 34%),radial-gradient(circle at 86% 18%,rgba(124,58,237,.14),transparent 32%),linear-gradient(135deg,#ffffff,#eff6ff 55%,#f0fdf4);padding:96px 0}.sx-page-hero h1{font-size:clamp(3rem,4.8vw,5.8rem);line-height:1.04;font-weight:900}.sx-page-hero p{font-size:1.28rem;line-height:1.72;max-width:920px}.sx-hero-visual-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(420px,.68fr);gap:48px;align-items:center}.sx-ai-illustration{min-height:360px;border-radius:34px;position:relative;overflow:hidden;background:linear-gradient(135deg,#0f172a,#1e1b4b 52%,#064e3b);box-shadow:0 30px 80px rgba(37,99,235,.22);border:1px solid rgba(37,99,235,.18);display:flex;align-items:center;justify-content:center}.sx-ai-illustration::before{content:"";position:absolute;inset:28px;border:1px solid rgba(255,255,255,.24);border-radius:28px;background:linear-gradient(135deg,rgba(255,255,255,.18),rgba(255,255,255,.04))}.sx-ai-illustration::after{content:"";position:absolute;width:300px;height:300px;border-radius:50%;border:2px solid rgba(34,197,94,.5);transform:rotateX(68deg);box-shadow:0 0 70px rgba(96,165,250,.26)}.sx-ai-orb{position:relative;z-index:2;min-width:168px;min-height:168px;border-radius:44px;background:radial-gradient(circle,#ffffff,#93c5fd 38%,#7c3aed 76%);display:flex;align-items:center;justify-content:center;text-align:center;color:#071632;font-size:2rem;font-weight:900;box-shadow:0 0 80px rgba(96,165,250,.65),0 0 130px rgba(124,58,237,.35);padding:24px}.sx-visual-label{position:absolute;left:28px;right:28px;bottom:28px;z-index:3;background:rgba(255,255,255,.88);color:#071632;border:1px solid rgba(255,255,255,.7);border-radius:18px;padding:16px 20px;font-weight:900;text-align:center;box-shadow:0 16px 38px rgba(0,0,0,.18)}.visual-annotation{background:linear-gradient(135deg,#0f172a,#1e40af,#065f46)}.visual-llm{background:linear-gradient(135deg,#1e1b4b,#6d28d9,#0e7490)}.visual-automation,.visual-platform{background:linear-gradient(135deg,#0f172a,#2563eb,#7c3aed)}.visual-healthcare{background:linear-gradient(135deg,#0f766e,#2563eb,#22c55e)}.visual-hr{background:linear-gradient(135deg,#7c3aed,#2563eb,#f97316)}.visual-desk,.visual-deploy{background:linear-gradient(135deg,#0f172a,#0891b2,#22c55e)}.visual-doc{background:linear-gradient(135deg,#1e3a8a,#f97316,#06b6d4)}
.sx-main-card,.sx-side-card,.sx-info-row,.sx-resource-card{border-radius:28px;padding:42px}.sx-main-card p{font-size:1.16rem;line-height:1.86}.sx-main-card h2{font-size:2.25rem}.sx-mini-grid div,.sx-check-list li{font-size:1.05rem}.sx-contact-form input,.sx-contact-form select,.sx-contact-form textarea{font-size:1.05rem;padding:18px 20px}.sx-side-card p{font-size:1.08rem;line-height:1.72;color:#334155}
#site-footer{background:linear-gradient(135deg,#06142e 0%,#10163e 52%,#042f2e 100%);padding:86px 0 38px;border-top:none;position:relative;overflow:hidden}#site-footer::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 12% 14%,rgba(37,99,235,.26),transparent 30%),radial-gradient(circle at 84% 28%,rgba(124,58,237,.22),transparent 32%),radial-gradient(circle at 75% 88%,rgba(34,197,94,.16),transparent 30%);pointer-events:none}.footer-grid-final{position:relative;z-index:1;display:grid;grid-template-columns:1.55fr .9fr 1.12fr .9fr 1.35fr;gap:36px;margin-bottom:54px;border-top:0}.footer-brand-line{font-size:1.18rem!important;font-weight:900;color:#fff!important;margin-bottom:8px!important}.footer-brand p{font-size:1rem;max-width:400px;color:#dbeafe!important}.footer-col h4{font-size:1rem;color:#fff}.footer-links a{font-size:1rem;color:#dbeafe}.footer-contact-card{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.14);border-radius:24px;padding:24px}.footer-contact-list{display:grid;gap:14px}.footer-contact-list p{display:flex;gap:12px;align-items:flex-start;color:#dbeafe;line-height:1.55;font-size:1rem}.footer-contact-list a{color:#fff;font-weight:800}.footer-bottom{position:relative;z-index:1;color:#bfdbfe;border-color:rgba(255,255,255,.14)}.footer-bottom a{color:#fff}
@media(max-width:1280px){.container{padding-left:28px;padding-right:28px}.hero-grid{grid-template-columns:1fr}.hero-video-card,.hero-ai-video{min-height:430px}.sx-hero-visual-grid{grid-template-columns:1fr}.footer-grid-final{grid-template-columns:1fr 1fr}.footer-brand-final{grid-column:1/-1}.services-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:900px){html{font-size:17px}.hero-video-visual{display:block!important}.hero-video-card,.hero-ai-video{min-height:320px}.sx-ai-illustration{min-height:300px}.products-grid{grid-template-columns:repeat(2,1fr)}.footer-grid-final{grid-template-columns:1fr}}
@media(max-width:640px){html{font-size:16px}.container{padding-left:18px;padding-right:18px}.hero-title{font-size:clamp(2.5rem,12vw,3.45rem)}.hero-desc,.section-subtitle,.sx-page-hero p{font-size:1.08rem}.services-grid,.products-grid{grid-template-columns:1fr}.sx-card-visual{height:150px}.sx-hero-visual-grid{gap:28px}.sx-ai-illustration{min-height:250px}.sx-ai-orb{min-width:126px;min-height:126px;font-size:1.55rem}.footer-contact-card{padding:20px}.sx-page-hero h1{font-size:clamp(2.25rem,12vw,3.2rem)}}
