* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0066cc;
    --dark-blue: #004494;
    --light-blue: #4285f4;
    --accent-orange: #ff6b35;
    --text-primary: #1a1a1a;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-section: #fafbfc;
    --border-light: #e5e7eb;
    --border-subtle: #f3f4f6;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-white);
    font-size: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.25;
    color: var(--text-primary);
}

/* Header - Modern Transparent Style */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: all 0.4s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

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

.header.scrolled .logo img {
    filter: brightness(0.9);
}

.header.scrolled .nav-link {
    color: var(--text-secondary);
}

.header.scrolled .nav-link:hover {
    color: var(--primary-blue);
}

.header.scrolled .nav-cta {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-color: rgba(0, 102, 204, 0.3);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.2);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    height: 65px;
    width: auto;
    display: block;
    filter: brightness(1.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.02em;
}

.nav-link:hover {
    color: #00d4ff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #ff8c5a);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.25);
    letter-spacing: 0.02em;
}

.nav-cta:hover {
    background: linear-gradient(135deg, #00b8e6 0%, #0088bb 100%);
    box-shadow: 0 6px 25px rgba(0, 212, 255, 0.4);
    transform: translateY(-2px);
}

/* Hero Section - Enhanced Background */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg,
                    rgba(8, 20, 50, 0.92) 0%,
                    rgba(15, 35, 80, 0.88) 30%,
                    rgba(20, 50, 100, 0.85) 60%,
                    rgba(30, 70, 130, 0.80) 100%),
                url('assets/img/7.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: white;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 170, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(45deg, transparent 30%, rgba(0, 212, 255, 0.03) 35%, transparent 40%),
        linear-gradient(-45deg, transparent 60%, rgba(0, 255, 170, 0.02) 65%, transparent 70%);
    animation: dataFlow 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes dataFlow {
    0%, 100% { opacity: 1; transform: translateX(0); }
    50% { opacity: 0.7; transform: translateX(20px); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content .subtitle {
    font-size: 1.25rem;
    color: #00d4ff;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-content .description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 500px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: white;
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00b8e6 0%, #0088bb 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

/* =============================================
   CIRCUIT BOARD BACKGROUND
   ============================================= */
.hero-circuit-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.circuit-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Circuit Traces - PCB style paths */
.circuit-traces .trace {
    fill: none;
    stroke: rgba(0, 212, 255, 0.15);
    stroke-width: 2;
    stroke-linecap: square;
    stroke-linejoin: miter;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawTrace 3s ease forwards;
}

.circuit-traces .trace:nth-child(1) { animation-delay: 0s; }
.circuit-traces .trace:nth-child(2) { animation-delay: 0.1s; }
.circuit-traces .trace:nth-child(3) { animation-delay: 0.15s; }
.circuit-traces .trace:nth-child(4) { animation-delay: 0.2s; }
.circuit-traces .trace:nth-child(5) { animation-delay: 0.25s; }
.circuit-traces .trace:nth-child(6) { animation-delay: 0.3s; }
.circuit-traces .trace:nth-child(7) { animation-delay: 0.35s; }
.circuit-traces .trace:nth-child(8) { animation-delay: 0.4s; }
.circuit-traces .trace:nth-child(9) { animation-delay: 0.45s; }
.circuit-traces .trace:nth-child(10) { animation-delay: 0.5s; }
.circuit-traces .trace:nth-child(11) { animation-delay: 0.55s; }
.circuit-traces .trace:nth-child(12) { animation-delay: 0.6s; }
.circuit-traces .trace:nth-child(13) { animation-delay: 0.65s; }
.circuit-traces .trace:nth-child(14) { animation-delay: 0.7s; }
.circuit-traces .trace:nth-child(15) { animation-delay: 0.75s; }
.circuit-traces .trace:nth-child(16) { animation-delay: 0.8s; }
.circuit-traces .trace:nth-child(17) { animation-delay: 0.85s; }
.circuit-traces .trace:nth-child(18) { animation-delay: 0.9s; }
.circuit-traces .trace:nth-child(19) { animation-delay: 0.95s; }
.circuit-traces .trace:nth-child(20) { animation-delay: 1s; }
.circuit-traces .trace:nth-child(21) { animation-delay: 1.05s; }
.circuit-traces .trace:nth-child(22) { animation-delay: 1.1s; }
.circuit-traces .trace:nth-child(23) { animation-delay: 1.15s; }
.circuit-traces .trace:nth-child(24) { animation-delay: 1.2s; }
.circuit-traces .trace:nth-child(25) { animation-delay: 1.25s; }

@keyframes drawTrace {
    to { stroke-dashoffset: 0; }
}

/* Chip Pads - Square solder points */
.circuit-nodes .chip-pad {
    fill: rgba(0, 212, 255, 0.4);
    opacity: 0;
    animation: padAppear 0.5s ease forwards;
}

.chip-pad:nth-child(1) { animation-delay: 1.3s; }
.chip-pad:nth-child(2) { animation-delay: 1.35s; }
.chip-pad:nth-child(3) { animation-delay: 1.4s; }
.chip-pad:nth-child(4) { animation-delay: 1.45s; }
.chip-pad:nth-child(5) { animation-delay: 1.5s; }
.chip-pad:nth-child(6) { animation-delay: 1.55s; }
.chip-pad:nth-child(7) { animation-delay: 1.6s; }
.chip-pad:nth-child(8) { animation-delay: 1.65s; }
.chip-pad:nth-child(9) { animation-delay: 1.7s; }
.chip-pad:nth-child(10) { animation-delay: 1.75s; }
.chip-pad:nth-child(11) { animation-delay: 1.8s; }
.chip-pad:nth-child(12) { animation-delay: 1.85s; }
.chip-pad:nth-child(13) { animation-delay: 1.9s; }
.chip-pad:nth-child(14) { animation-delay: 1.95s; }
.chip-pad:nth-child(15) { animation-delay: 2s; }

@keyframes padAppear {
    to { opacity: 1; }
}

/* Via Holes - Circular through-hole connections */
.circuit-nodes .via-hole {
    fill: transparent;
    stroke: rgba(0, 212, 255, 0.5);
    stroke-width: 2;
    opacity: 0;
    animation: viaAppear 0.5s ease forwards, viaPulse 3s ease-in-out infinite;
}

.via-hole:nth-child(16) { animation-delay: 1.4s, 2.5s; }
.via-hole:nth-child(17) { animation-delay: 1.5s, 2.6s; }
.via-hole:nth-child(18) { animation-delay: 1.6s, 2.7s; }
.via-hole:nth-child(19) { animation-delay: 1.7s, 2.8s; }
.via-hole:nth-child(20) { animation-delay: 1.8s, 2.9s; }
.via-hole:nth-child(21) { animation-delay: 1.9s, 3s; }
.via-hole:nth-child(22) { animation-delay: 2s, 3.1s; }
.via-hole:nth-child(23) { animation-delay: 2.1s, 3.2s; }
.via-hole:nth-child(24) { animation-delay: 2.2s, 3.3s; }
.via-hole:nth-child(25) { animation-delay: 2.3s, 3.4s; }
.via-hole:nth-child(26) { animation-delay: 2.4s, 3.5s; }

@keyframes viaAppear {
    to { opacity: 1; }
}

@keyframes viaPulse {
    0%, 100% { stroke-opacity: 0.5; }
    50% { stroke-opacity: 1; stroke: rgba(0, 212, 255, 0.8); }
}

/* IC Chips - Integrated circuit representations */
.ic-chips .ic-chip {
    fill: rgba(20, 40, 80, 0.6);
    stroke: rgba(0, 212, 255, 0.4);
    stroke-width: 1;
    opacity: 0;
    animation: chipAppear 0.8s ease forwards;
}

.ic-chip:nth-child(1) { animation-delay: 2s; }
.ic-chip:nth-child(2) { animation-delay: 2.2s; }

@keyframes chipAppear {
    to { opacity: 1; }
}

/* Electric Pulses - Animated signals traveling through traces */
.electric-pulses .pulse {
    fill: #00d4ff;
    opacity: 0;
    filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.8));
}

/* Pulse animations following circuit paths */
.pulse-1 { animation: electricPulse1 8s linear infinite; }
.pulse-2 { animation: electricPulse2 10s linear infinite; animation-delay: -2s; }
.pulse-3 { animation: electricPulse3 7s linear infinite; animation-delay: -4s; }
.pulse-4 { animation: electricPulse4 9s linear infinite; animation-delay: -1s; }
.pulse-5 { animation: electricPulse5 11s linear infinite; animation-delay: -3s; }
.pulse-6 { animation: electricPulse6 8s linear infinite; animation-delay: -5s; }

@keyframes electricPulse1 {
    0% { cx: 0; cy: 120; opacity: 0; }
    2% { opacity: 1; }
    10% { cx: 80; cy: 120; }
    15% { cx: 80; cy: 200; }
    25% { cx: 150; cy: 200; }
    35% { cx: 150; cy: 280; }
    50% { cx: 250; cy: 280; }
    60% { cx: 250; cy: 150; }
    75% { cx: 350; cy: 150; }
    90% { cx: 450; cy: 150; }
    98% { opacity: 1; }
    100% { cx: 450; cy: 100; opacity: 0; }
}

@keyframes electricPulse2 {
    0% { cx: 550; cy: 100; opacity: 0; }
    2% { opacity: 1; }
    15% { cx: 550; cy: 180; }
    30% { cx: 650; cy: 180; }
    45% { cx: 650; cy: 250; }
    60% { cx: 750; cy: 250; }
    75% { cx: 750; cy: 180; }
    90% { cx: 850; cy: 180; }
    98% { opacity: 1; }
    100% { cx: 850; cy: 120; opacity: 0; }
}

@keyframes electricPulse3 {
    0% { cx: 950; cy: 120; opacity: 0; }
    2% { opacity: 1; }
    20% { cx: 1050; cy: 120; }
    40% { cx: 1050; cy: 180; }
    60% { cx: 1150; cy: 180; }
    80% { cx: 1150; cy: 250; }
    98% { opacity: 1; }
    100% { cx: 1250; cy: 250; opacity: 0; }
}

@keyframes electricPulse4 {
    0% { cx: 600; cy: 250; opacity: 0; }
    2% { opacity: 1; }
    20% { cx: 600; cy: 320; }
    40% { cx: 700; cy: 320; }
    60% { cx: 700; cy: 400; }
    80% { cx: 800; cy: 400; }
    98% { opacity: 1; }
    100% { cx: 800; cy: 320; opacity: 0; }
}

@keyframes electricPulse5 {
    0% { cx: 1100; cy: 480; opacity: 0; }
    2% { opacity: 1; }
    25% { cx: 1180; cy: 480; }
    50% { cx: 1180; cy: 550; }
    75% { cx: 1280; cy: 550; }
    98% { opacity: 1; }
    100% { cx: 1350; cy: 550; opacity: 0; }
}

@keyframes electricPulse6 {
    0% { cx: 450; cy: 550; opacity: 0; }
    2% { opacity: 1; }
    25% { cx: 550; cy: 550; }
    50% { cx: 550; cy: 600; }
    75% { cx: 700; cy: 600; }
    98% { opacity: 1; }
    100% { cx: 700; cy: 550; opacity: 0; }
}

.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

/* Stats Grid Below Featured Card */
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 1.25rem;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 450px;
}

.mini-stat {
    opacity: 0;
    transform: translateY(15px);
    animation: miniStatEntrance 0.6s ease forwards;
}

.mini-stat:nth-child(1) { animation-delay: 0.6s; }
.mini-stat:nth-child(2) { animation-delay: 0.75s; }
.mini-stat:nth-child(3) { animation-delay: 0.9s; }

@keyframes miniStatEntrance {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================
   STYLE 1: White Cards (Original)
   Add class "style-white" to .hero-stats-grid
   ============================================= */
.hero-stats-grid.style-white .mini-stat {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 0.75rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-stats-grid.style-white .mini-stat-number {
    display: block;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.2;
}

.hero-stats-grid.style-white .mini-stat-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 0.25rem;
}

/* =============================================
   STYLE 2: Bordered Accent Cards
   Add class "style-bordered" to .hero-stats-grid
   ============================================= */
.hero-stats-grid.style-bordered .mini-stat {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 1rem;
    border-radius: 8px;
    text-align: left;
    border-left: 4px solid var(--accent-orange);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.hero-stats-grid.style-bordered .mini-stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.hero-stats-grid.style-bordered .mini-stat-label {
    display: block;
    font-size: 0.65rem;
    color: var(--accent-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.35rem;
}

/* =============================================
   STYLE 3: Dark Transparent Cards (Recommended)
   Add class "style-dark" to .hero-stats-grid
   ============================================= */
.hero-stats-grid.style-dark .mini-stat {
    background: rgba(0, 20, 50, 0.6);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 1.25rem 1rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stats-grid.style-dark .mini-stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: #00d4ff;
    line-height: 1;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.hero-stats-grid.style-dark .mini-stat-label {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin-top: 0.5rem;
}

/* =============================================
   STYLE 4: Minimal Line Cards
   Add class "style-minimal" to .hero-stats-grid
   ============================================= */
.hero-stats-grid.style-minimal .mini-stat {
    background: transparent;
    padding: 1rem 0.5rem;
    text-align: center;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
}

.hero-stats-grid.style-minimal .mini-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 300;
    color: white;
    line-height: 1;
    letter-spacing: -0.02em;
}

.hero-stats-grid.style-minimal .mini-stat-label {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Default fallback styles */
.mini-stat-number {
    display: block;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.2;
}

.mini-stat-wide .mini-stat-number {
    font-size: 1.5rem;
    color: var(--accent-orange);
}

.mini-stat-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 0.25rem;
}

.mini-stat-wide .mini-stat-label {
    font-size: 0.75rem;
}

/* Featured Card - Clean Professional Style */
.hero-card {
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.95) 0%, rgba(0, 160, 200, 0.95) 100%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    max-width: 480px;
    width: 100%;
    color: white;
    animation: cardEntrance 1s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes cardEntrance {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.08) 100%);
    border-radius: 20px;
    pointer-events: none;
}

.hero-card-featured {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.95) 0%, rgba(0, 160, 200, 0.95) 100%);
}

.featured-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.featured-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.hero-card-featured h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 0.875rem;
    position: relative;
    z-index: 1;
    color: white;
}

.hero-card-featured p {
    font-size: 0.9375rem;
    line-height: 1.65;
    opacity: 0.92;
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.card-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-blue);
}

/* Trust Section */
.trust {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border-bottom: 1px solid var(--border-light);
}

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.trust-title {
    font-size: 1.75rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.trust-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.trust-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    align-items: center;
}

.trust-item {
    padding: 1.5rem;
    color: var(--text-secondary);
    font-weight: 500;
    background: var(--bg-section);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.trust-item:hover {
    background: white;
    box-shadow: var(--shadow-sm);
    color: var(--text-primary);
}

/* Scrolling Brands */
.brands-scroll-container {
    overflow: hidden;
    position: relative;
    padding: 1.5rem 0;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.brands-scroll {
    display: flex;
    gap: 2.5rem;
    animation: scroll 40s linear infinite;
}

.brands-scroll:hover {
    animation-play-state: paused;
}

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

.brand-item,
.partner-item {
    flex-shrink: 0;
    padding: 1.5rem 2.5rem;
    background: white;
    border-radius: 16px;
    transition: all 0.3s ease;
    min-width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.brand-item img,
.partner-item img {
    max-height: 65px;
    max-width: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
}

.brand-item:hover,
.partner-item:hover {
    background: white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.brand-item:hover img,
.partner-item:hover img {
    filter: grayscale(100%) opacity(0.9);
}

/* Hero Stats Inline */
.hero-stats-inline {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat-inline {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-inline .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4ff;
}

.stat-inline .stat-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Hero Card Featured */
.hero-card-featured {
    grid-column: 1 / -1;
    position: relative;
    overflow: hidden;
}

.featured-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-card-featured h3 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.5rem;
}

.hero-card-featured p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* Platform Showcase Section */
.platform-showcase {
    padding: 6rem 0;
    background: var(--bg-section);
}

.platform-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.platform-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0, 102, 204, 0.2);
}

.platform-featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
    border: 2px solid var(--primary-blue);
    padding: 3rem;
}

.platform-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.platform-badge {
    background: var(--accent-orange);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.platform-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.platform-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.platform-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.platform-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin: 2rem 0;
}

.feature-item {
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 0.5rem 0;
}

.platform-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

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

.platform-stat strong {
    display: block;
    font-size: 1.75rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.platform-stat span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.platform-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.metric {
    background: var(--bg-section);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
}

/* Value Proposition Section */
.value-proposition {
    padding: 6rem 0;
    background: white;
}

.value-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--bg-section);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: white;
}

.value-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(0, 102, 204, 0.1);
    line-height: 1;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

/* Partners Section */
.partners {
    padding: 6rem 0;
    background: var(--bg-section);
}

.partners-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.partners-scroll {
    animation-duration: 40s;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    color: white;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

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

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* Solutions Section */
.solutions {
    padding: 6rem 0;
    background: linear-gradient(rgba(248, 250, 252, 0.95), rgba(248, 250, 252, 0.95)),
                url('assets/img/1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.solutions-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

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

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

.solution-card {
    background: white;
    padding: 1.75rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-orange);
    border-radius: 12px 12px 0 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.solution-card:hover::before {
    transform: scaleX(1);
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0, 102, 204, 0.1);
}

.solution-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    position: relative;
}

.solution-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-blue);
}

.solution-badge {
    display: inline-block;
    background: var(--accent-orange);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.solution-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.solution-description {
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
    flex-grow: 1;
}

.solution-features {
    list-style: none;
    margin-bottom: 1.25rem;
}

.solution-features li {
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.8rem;
}

.solution-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 0.75rem;
}

.solution-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s ease;
    font-size: 0.875rem;
    margin-top: auto;
}

.solution-link:hover {
    gap: 0.75rem;
}

.solution-link::after {
    content: '→';
    transition: transform 0.2s ease;
}

.solution-link:hover::after {
    transform: translateX(2px);
}

/* Industries Section */
.industries {
    padding: 6rem 0;
    background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
                url('assets/img/3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.industries-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

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

.industry-card:hover {
    background: white;
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 102, 204, 0.1);
}

.industry-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 102, 204, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.industry-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--primary-blue);
}

.industry-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.industry-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Technology Section */
.technology {
    padding: 6rem 0;
    background: linear-gradient(rgba(26, 26, 26, 0.85), rgba(26, 26, 26, 0.85)),
                url('assets/img/4.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.technology-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.technology .section-title {
    color: white;
}

.technology .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

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

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

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

.tech-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    border-color: rgba(0, 212, 255, 0.4);
}

.tech-logo {
    width: 60px;
    height: 60px;
    background: rgba(0, 212, 255, 0.15);
    border-radius: 12px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d4ff;
    border: 1px solid rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.tech-logo svg {
    width: 28px;
    height: 28px;
    stroke: #00d4ff;
}

.tech-item:hover .tech-logo {
    background: rgba(0, 212, 255, 0.25);
    border-color: rgba(0, 212, 255, 0.5);
    transform: scale(1.05);
}

.tech-item h4 {
    margin-bottom: 0.75rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.tech-item p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Downloads Section */
.downloads {
    padding: 6rem 0;
    background: linear-gradient(rgba(250, 251, 252, 0.95), rgba(250, 251, 252, 0.95)),
                url('assets/img/6.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.downloads-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.download-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.download-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 102, 204, 0.1);
}

.download-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.download-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-blue);
}

.download-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.download-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.875rem;
}

.download-btn {
    background: var(--primary-blue);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.download-btn:hover {
    background: var(--dark-blue);
    transform: translateY(-1px);
}

.download-btn-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.download-btn-group .download-btn {
    text-align: center;
    justify-content: center;
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(rgba(255, 255, 255, 0.93), rgba(255, 255, 255, 0.93)),
                url('assets/img/8.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form {
    background: var(--bg-section);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-section);
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-blue);
}

.contact-details h4 {
    margin: 0 0 0.25rem 0;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

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

.contact-details p a {
    color: var(--text-secondary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.contact-details p a:hover {
    color: var(--primary-blue);
}

.contact-details p a .fi {
    font-size: 1.1em;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    color: #FFF;
}

.whatsapp-icon {
    margin-top: 16px;
    color: white;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.footer-section:first-child h3 {
    color: var(--accent-orange);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.footer-stat strong {
    display: block;
    font-size: 1.5rem;
    color: var(--accent-orange);
    margin-bottom: 0.25rem;
}

.footer-stat span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-tagline {
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-bottom #siteseal {
    display: inline-block;
    margin-top: 1rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        grid-template-columns: 1fr 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .platform-featured {
        grid-column: 1;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
    }

    .nav-menu {
        display: none;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-container {
        padding: 0 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

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

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

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

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

    .brands-scroll {
        animation-duration: 20s;
    }

    .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }

    .mini-stat-wide {
        grid-column: 1 / -1;
    }

    .mini-stat {
        padding: 0.875rem 0.5rem;
    }

    .mini-stat-number {
        font-size: 1.2rem;
    }

    .mini-stat-wide .mini-stat-number {
        font-size: 1.35rem;
    }
}

@media (max-width: 480px) {
    .solutions-container,
    .industries-container,
    .technology-container,
    .downloads-container,
    .contact-container,
    .platform-container,
    .value-container,
    .partners-container,
    .cta-container {
        padding: 0 1rem;
    }

    .solution-card,
    .download-card {
        padding: 1.5rem;
    }

    .hero-card,
    .platform-card {
        padding: 1.5rem;
    }

    .platform-featured {
        padding: 2rem;
    }

    .value-card {
        padding: 1.5rem;
    }
}
