﻿/* AB Packk Premium Styling - Modern Industrial Design */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    /* Navy/Slate Base */
    --navy: #0a0f1a;
    --navy-light: #131b2e;
    --slate-800: #1e293b;
    --slate-900: #0f172a;

    /* Teal Primary Palette - More Vibrant */
    --teal: #0d9488;
    --teal-light: #2dd4bf;
    --teal-dark: #0f766e;
    --teal-glow: rgba(45, 212, 191, 0.4);
    --cyan: #22d3ee;
    --emerald: #34d399;

    /* Accent Colors */
    --purple: #a78bfa;
    --pink: #f472b6;

    /* Legacy alias for compatibility */
    --orange: #0d9488;
    --orange-light: #2dd4bf;
    --orange-glow: rgba(45, 212, 191, 0.35);

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --success: #10b981;

    /* Glassmorphism - Enhanced */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-bg-dark: rgba(10, 15, 26, 0.9);
    --glass-border: rgba(255, 255, 255, 0.25);
    --glass-blur: blur(24px);

    /* Modern Gradients - More Dynamic */
    --gradient-hero: linear-gradient(135deg, #0a0f1a 0%, #131b2e 50%, #0a0f1a 100%);
    --gradient-teal: linear-gradient(135deg, #0d9488 0%, #2dd4bf 50%, #22d3ee 100%);
    --gradient-orange: linear-gradient(135deg, #0d9488 0%, #2dd4bf 100%);
    --gradient-mesh:
        radial-gradient(ellipse 80% 50% at 20% -10%, rgba(45, 212, 191, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 10%, rgba(34, 211, 238, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 50% 100%, rgba(52, 211, 153, 0.15) 0%, transparent 50%);
    --gradient-text: linear-gradient(135deg, #2dd4bf 0%, #22d3ee 50%, #34d399 100%);
    --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.95) 100%);

    /* Enhanced Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 24px 48px rgba(0, 0, 0, 0.15);
    --shadow-2xl: 0 32px 64px rgba(0, 0, 0, 0.2);
    --shadow-teal: 0 12px 40px rgba(45, 212, 191, 0.35);
    --shadow-glow: 0 0 80px rgba(45, 212, 191, 0.3);
    --shadow-orange: 0 12px 40px rgba(45, 212, 191, 0.3);
    --shadow-inner-glow: inset 0 0 60px rgba(45, 212, 191, 0.1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-2xl: 36px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-spring: 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* TOPBAR */
.topbar {
    background: var(--navy);
    color: var(--gray-300);
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.topbar a {
    color: var(--gray-300);
    margin-left: 16px;
    font-weight: 500;
}

.topbar a:hover {
    color: var(--orange);
}

/* HEADER */
header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--gray-200);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 26px;
    color: var(--navy);
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-orange);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 18px;
    box-shadow: var(--shadow-orange);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    padding: 10px 16px;
    font-weight: 600;
    font-size: 15px;
    color: var(--gray-700);
    border-radius: var(--radius-md);
}

.nav-links a:hover {
    color: var(--orange);
    background: var(--gray-50);
}

.mega {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
    padding: 24px;
    min-width: 560px;
    display: none;
    z-index: 100;
}

.mega:hover .mega-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.mega-menu .col h4 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-400);
    margin-bottom: 12px;
}

.mega-menu .col a {
    display: block;
    padding: 10px 12px;
    border-radius: var(--radius-md);
    font-weight: 500;
    color: var(--gray-700);
}

.mega-menu .col a:hover {
    background: var(--gray-50);
    color: var(--orange);
}

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: var(--gray-100);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 24px;
    color: var(--navy);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--gradient-teal);
    color: var(--white);
    box-shadow: var(--shadow-teal);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -10px rgba(13, 148, 136, 0.5);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--navy);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: var(--navy-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--teal);
    color: var(--teal);
}

.btn-outline:hover {
    background: var(--teal);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-teal);
}

.btn-white {
    background: var(--white);
    color: var(--navy);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 17px;
    border-radius: var(--radius-lg);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

/* HERO - Dramatically Enhanced with Slider */
.hero {
    position: relative;
    color: var(--white);
    padding: 140px 0 160px;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--navy);
}

/* Background Slider */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

/* Light overlay for text readability while keeping images visible */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.55) 0%, rgba(15, 23, 42, 0.35) 100%);
    z-index: 1;
}

/* Slider Navigation Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.hero-slider-dots .dot.active {
    background: var(--teal);
    transform: scale(1.3);
}

/* Animated gradient mesh background (fallback if no images) */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    animation: meshFloat 15s ease-in-out infinite;
    z-index: 0;
}

@keyframes meshFloat {

    0%,
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }

    33% {
        opacity: 0.9;
        transform: scale(1.05) rotate(1deg);
    }

    66% {
        opacity: 0.85;
        transform: scale(1.1) rotate(-1deg);
    }
}

/* Primary floating orb */
.hero::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, var(--teal-glow) 0%, rgba(34, 211, 238, 0.2) 40%, transparent 70%);
    border-radius: 50%;
    animation: floatOrb 12s ease-in-out infinite;
    filter: blur(40px);
    z-index: 0;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }

    25% {
        transform: translate(-30px, 20px) scale(1.05);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50px, -30px) scale(1.1);
        opacity: 0.6;
    }

    75% {
        transform: translate(-20px, -10px) scale(1.02);
        opacity: 0.5;
    }
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 0, 0.2);
    color: var(--orange-light);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 107, 0, 0.3);
    animation: heroBadgeEntry 0.6s ease-out;
}

@keyframes heroBadgeEntry {
    from {
        opacity: 0;
        transform: translateY(-15px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
    animation: heroTitleEntry 0.8s ease-out;
}

@keyframes heroTitleEntry {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 span {
    color: var(--orange);
}

.hero-text {
    font-size: 18px;
    color: var(--gray-300);
    margin-bottom: 32px;
    max-width: 540px;
    animation: heroTextEntry 0.8s ease-out 0.15s both;
}

@keyframes heroTextEntry {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: heroActionsEntry 0.8s ease-out 0.3s both;
}

@keyframes heroActionsEntry {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-actions .btn-primary {
    box-shadow: 0 0 25px rgba(255, 107, 0, 0.35);
    transition: all 0.3s ease;
}

.hero-actions .btn-primary:hover {
    box-shadow: 0 0 40px rgba(255, 107, 0, 0.5);
    transform: translateY(-3px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--orange);
}

.hero-stat-label {
    font-size: 14px;
    color: var(--gray-400);
}

.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-image-wrapper img {
    border-radius: var(--radius-lg);
    width: 100%;
}

.hero-float-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    box-shadow: var(--shadow-2xl);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-float-card.top {
    top: 20px;
    right: -20px;
}

.hero-float-card.bottom {
    bottom: -20px;
    left: -20px;
}

.hero-float-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-orange);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.hero-float-text strong {
    display: block;
    font-size: 14px;
    color: var(--navy);
}

.hero-float-text span {
    font-size: 12px;
    color: var(--gray-500);
}

/* SECTIONS */
.section {
    padding: 100px 0;
}

.section-sm {
    padding: 60px 0;
}

.section-gray {
    background: var(--gray-50);
}

.section-navy {
    background: var(--navy);
    color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--orange);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-navy .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-500);
}

/* TRUST BAR */
.trust-bar {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-200);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.trust-icon {
    width: 54px;
    height: 54px;
    background: var(--gradient-orange);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.trust-text strong {
    display: block;
    font-size: 15px;
    color: var(--navy);
    font-weight: 700;
}

.trust-text span {
    font-size: 13px;
    color: var(--gray-500);
}

/* GRIDS */
.grid {
    display: grid;
    gap: 24px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid-6 {
    grid-template-columns: repeat(6, 1fr);
}

/* CARDS - Enhanced with Visual Distinction */
.card {
    background: var(--white);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 36px;
    transition: all var(--transition-spring);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
    /* Visible shadow by default */
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.06);
}

/* Teal accent bar - VISIBLE by default */
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-teal);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

/* Shimmer effect overlay */
.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(45, 212, 191, 0.08) 50%,
            transparent 100%);
    transition: left var(--transition-slow);
    pointer-events: none;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 0 40px rgba(45, 212, 191, 0.15);
    border-color: var(--teal-light);
}

.card:hover::after {
    left: 100%;
}

.card-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.15) 0%, rgba(34, 211, 238, 0.1) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--teal);
    font-size: 32px;
    transition: all var(--transition-bounce);
    position: relative;
    z-index: 1;
}

.card:hover .card-icon {
    background: var(--gradient-teal);
    color: var(--white);
    transform: scale(1.15) rotate(-5deg);
    box-shadow: var(--shadow-teal);
}

.card-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.card-text {
    color: var(--gray-600);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* MACHINE CARDS */
.machine-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    position: relative;
}

.machine-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-teal);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.machine-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.machine-card:hover::after {
    transform: scaleX(1);
}

.machine-card-image {
    height: 220px;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--gray-400);
}

.machine-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.machine-card:hover .machine-card-image img {
    transform: scale(1.08);
}

.machine-card-body {
    padding: 28px;
}

.machine-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.machine-card-text {
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.machine-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.machine-card-features span {
    background: var(--gray-100);
    color: var(--gray-600);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 500;
}

/* FEATURES */
.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--orange);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-orange);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 36px;
    box-shadow: var(--shadow-orange);
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.feature-text {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* STATS */
.stats-section {
    background: var(--gradient-hero);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23fff' opacity='.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: var(--gray-300);
}

/* INDUSTRIES */
.industry-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-orange);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.industry-card:hover::before {
    transform: scaleX(1);
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.industry-icon {
    width: 80px;
    height: 80px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
    background: var(--gradient-orange);
    color: white;
    transform: scale(1.1);
}

.industry-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.industry-text {
    font-size: 14px;
    color: var(--gray-500);
}

/* TESTIMONIALS */
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
}

.testimonial-quote {
    font-size: 64px;
    color: var(--orange);
    opacity: 0.2;
    position: absolute;
    top: 16px;
    left: 24px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 24px;
    padding-top: 32px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.testimonial-author-info strong {
    display: block;
    color: var(--navy);
    font-size: 15px;
}

.testimonial-author-info span {
    font-size: 13px;
    color: var(--gray-500);
}

/* FAQ */
.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-item summary {
    padding: 24px;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 24px;
    color: var(--orange);
    font-weight: 400;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 24px 24px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* CTA */
.cta-section {
    background: var(--gradient-hero);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
}

.cta-section::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--teal-glow) 0%, transparent 60%);
    border-radius: 50%;
    animation: pulseGlow 10s ease-in-out infinite;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-text {
    font-size: 18px;
    color: var(--gray-300);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* FOOTER */
footer {
    background: var(--navy);
    color: var(--gray-400);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo {
    color: var(--white);
}

.footer-brand p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--teal);
    transform: translateY(-3px);
}

footer h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

footer a {
    color: var(--gray-400);
    transition: color var(--transition-fast);
}

footer a:hover {
    color: var(--teal-light);
}

/* FORM CONTROLS */
.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 15px;
    margin-bottom: 12px;
    transition: all var(--transition-base);
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.15);
}

/* FLOATING BUTTONS */
.floating-whatsapp,
.sticky-quote,
.call-btn {
    position: fixed;
    z-index: 999;
    padding: 14px 20px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 14px;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.floating-whatsapp {
    bottom: 100px;
    right: 24px;
    background: #25D366;
    color: white;
}

.sticky-quote {
    bottom: 24px;
    right: 24px;
    background: var(--gradient-teal);
    color: white;
}

.call-btn {
    bottom: 24px;
    left: 24px;
    background: var(--navy);
    color: white;
}

.floating-whatsapp:hover,
.sticky-quote:hover,
.call-btn:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal.open {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    max-width: 480px;
    width: 100%;
    box-shadow: var(--shadow-2xl);
    animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HERO MINI (Sub-pages) - Enhanced Engaging Version */
.hero-mini {
    background: linear-gradient(135deg, #0a0f1a 0%, #1e293b 50%, #0f172a 100%);
    color: var(--white);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Animated gradient mesh background */
.hero-mini::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(45, 212, 191, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(6, 182, 212, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 50% 20%, rgba(14, 165, 233, 0.1) 0%, transparent 50%);
    animation: heroGradientPulse 8s ease-in-out infinite;
}

/* Floating orb effect */
.hero-mini::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: heroOrbFloat 10s ease-in-out infinite;
}

@keyframes heroGradientPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes heroOrbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }

    33% {
        transform: translate(-30px, 20px) scale(1.1);
        opacity: 0.7;
    }

    66% {
        transform: translate(20px, -20px) scale(0.95);
        opacity: 0.4;
    }
}

/* Animated particles/shapes */
.hero-mini .hero-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(45, 212, 191, 0.6);
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
}

.hero-mini .hero-particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.hero-mini .hero-particle:nth-child(2) {
    left: 25%;
    top: 60%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.hero-mini .hero-particle:nth-child(3) {
    left: 75%;
    top: 30%;
    animation-delay: 4s;
    animation-duration: 14s;
}

.hero-mini .hero-particle:nth-child(4) {
    left: 85%;
    top: 70%;
    animation-delay: 1s;
    animation-duration: 16s;
}

.hero-mini .hero-particle:nth-child(5) {
    left: 50%;
    top: 80%;
    animation-delay: 3s;
    animation-duration: 20s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }

    25% {
        transform: translateY(-25px) rotate(90deg);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-50px) rotate(180deg);
        opacity: 0.4;
    }

    75% {
        transform: translateY(-25px) rotate(270deg);
        opacity: 0.7;
    }

    100% {
        transform: translateY(0) rotate(360deg);
        opacity: 0.6;
    }
}

/* Hero mini container positioning */
.hero-mini .container {
    position: relative;
    z-index: 2;
}

/* Enhanced title with gradient and animation */
.hero-mini h1 {
    font-size: 48px;
    font-weight: 800;
    position: relative;
    z-index: 1;
    animation: heroTitleReveal 0.8s ease-out forwards;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroTitleReveal 0.8s ease-out, heroTitleShimmer 4s ease-in-out infinite 0.8s;
}

@keyframes heroTitleReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroTitleShimmer {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }
}

/* Subtitle with reveal animation */
.hero-mini p {
    color: var(--gray-300);
    font-size: 18px;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    animation: heroSubtitleReveal 0.8s ease-out 0.2s both;
}

@keyframes heroSubtitleReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero badge with pulse animation */
.hero-mini .hero-badge,
.hero-mini [class*="badge"] {
    display: inline-block;
    background: rgba(45, 212, 191, 0.15);
    color: #2dd4bf;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(45, 212, 191, 0.3);
    animation: heroBadgePulse 3s ease-in-out infinite, heroSubtitleReveal 0.6s ease-out;
    position: relative;
    z-index: 1;
}

@keyframes heroBadgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.4);
    }

    50% {
        box-shadow: 0 0 20px 5px rgba(45, 212, 191, 0.2);
    }
}

/* Breadcrumbs styling */
.hero-mini .breadcrumbs {
    margin-top: 24px;
    opacity: 0.7;
    position: relative;
    z-index: 1;
    animation: heroSubtitleReveal 0.8s ease-out 0.4s both;
}

/* Stats in hero mini with counter animation style */
.hero-mini-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 32px;
    position: relative;
    z-index: 1;
}

.hero-mini-stat {
    text-align: center;
    animation: heroStatReveal 0.6s ease-out both;
}

.hero-mini-stat:nth-child(1) {
    animation-delay: 0.3s;
}

.hero-mini-stat:nth-child(2) {
    animation-delay: 0.4s;
}

.hero-mini-stat:nth-child(3) {
    animation-delay: 0.5s;
}

.hero-mini-stat:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes heroStatReveal {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-mini-stat-value {
    font-size: 36px;
    font-weight: 800;
    color: #2dd4bf;
    text-shadow: 0 0 30px rgba(45, 212, 191, 0.3);
}

.hero-mini-stat-label {
    font-size: 14px;
    color: var(--gray-400);
    margin-top: 4px;
}

/* CTA buttons in hero */
.hero-mini-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    position: relative;
    z-index: 1;
    animation: heroSubtitleReveal 0.8s ease-out 0.5s both;
}

.hero-mini-actions .btn-primary {
    box-shadow: 0 0 30px rgba(45, 212, 191, 0.3);
    transition: all 0.3s ease;
}

.hero-mini-actions .btn-primary:hover {
    box-shadow: 0 0 40px rgba(45, 212, 191, 0.5);
    transform: translateY(-2px);
}

/* BADGES & PILLS */
.badge,
.pill {
    display: inline-flex;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
}

.badge {
    background: rgba(13, 148, 136, 0.15);
    color: var(--teal);
    border: 1px solid rgba(13, 148, 136, 0.3);
}

.pill {
    background: var(--glass-bg);
    border: 1px solid var(--gray-200);
    color: var(--gray-700);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
    animation: heroBadgesEntry 0.8s ease-out 0.4s both;
}

@keyframes heroBadgesEntry {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badges .badge {
    animation: badgeStagger 0.5s ease-out both;
    transition: all 0.3s ease;
}

.hero-badges .badge:nth-child(1) {
    animation-delay: 0.5s;
}

.hero-badges .badge:nth-child(2) {
    animation-delay: 0.6s;
}

.hero-badges .badge:nth-child(3) {
    animation-delay: 0.7s;
}

.hero-badges .badge:nth-child(4) {
    animation-delay: 0.8s;
}

@keyframes badgeStagger {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-badges .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.trustbar {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* SECTION ALTERNATING */
.section-alt {
    background: var(--gray-50);
}

/* ICON LISTS */
.icon-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.icon-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-dot {
    width: 10px;
    height: 10px;
    background: var(--gradient-teal);
    border-radius: 50%;
    flex-shrink: 0;
}

/* SLIDER */
.slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.slider::-webkit-scrollbar {
    height: 8px;
}

.slider::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: var(--radius-full);
}

.slider::-webkit-scrollbar-thumb {
    background: var(--teal);
    border-radius: var(--radius-full);
}

.slider>* {
    scroll-snap-align: start;
    flex-shrink: 0;
}

/* STAT CARDS */
.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-teal);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(45, 212, 191, 0.15);
}

.stat-icon {
    font-size: 40px;
    margin-bottom: 12px;
    display: block;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: var(--gray-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* FEATURE BAR */
.feature-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: var(--gradient-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--white);
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

    .hero h1 {
        font-size: 44px;
    }
}

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero {
        padding: 80px 0 100px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 34px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Grid-6: 3 columns on tablet */
    .grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow-xl);
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        padding: 14px;
    }

    .mega-menu {
        position: static;
        transform: none;
        box-shadow: none;
        padding: 0 0 0 24px;
        min-width: 100%;
    }

    .mega:hover .mega-menu {
        display: block;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .grid-6 {
        grid-template-columns: 1fr;
    }

    /* Industry cards - 2 columns on small screens */
    .grid-6 {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .hero {
        padding: 60px 0 80px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .topbar {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cta-section {
        padding: 80px 0;
    }

    .cta-title {
        font-size: 28px;
    }

    .actions {
        flex-direction: column;
    }

    .actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .section-title {
        font-size: 24px;
    }

    .card {
        padding: 24px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .floating-whatsapp,
    .sticky-quote {
        padding: 12px 16px;
        font-size: 13px;
    }

    .call-btn {
        left: 16px;
        padding: 12px 16px;
    }
}

/* FEATURED GRID - Compact & Centered */
.featured-grid {
    display: flex !important;
    /* Override grid class */
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.featured-grid .card {
    flex: 0 1 320px;
    /* Compact width */
    padding: 24px;
    /* Reduced padding */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.featured-grid .card img {
    height: 140px !important;
    /* Override inline styles */
    width: auto;
    margin-bottom: 16px;
}

.featured-grid .card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.featured-grid .card p {
    font-size: 14px;
    margin-bottom: 16px;
    flex-grow: 1;
}

.featured-grid .card .btn {
    width: 100%;
}

/* READ MORE COMPONENT */
.read-more-container {
    position: relative;
    margin-top: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--gray-200);
}

.read-more-content {
    max-height: 200px;
    overflow: hidden;
    transition: max-height 0.5s ease;
    position: relative;
}

.read-more-content.expanded {
    max-height: 2000px;
    /* Large enough to fit content */
}

.read-more-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--white));
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.read-more-content.expanded .read-more-overlay {
    opacity: 0;
}

.read-more-btn-wrapper {
    text-align: center;
    margin-top: 20px;
}

.seo-content h3 {
    font-size: 24px;
    color: var(--navy);
    margin: 30px 0 16px;
    font-weight: 700;
}

.seo-content p {
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.8;
}

.seo-content ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.seo-content li {
    margin-bottom: 10px;
    color: var(--gray-600);
}

/* =====================================================
   MACHINE PAGE ENHANCEMENTS
   ===================================================== */

/* MACHINE HERO SECTION */
.hero-machine {
    background: linear-gradient(135deg, #0a0f1a 0%, #131b2e 50%, #0f172a 100%);
    color: var(--white);
    padding: 100px 0 70px;
    position: relative;
    overflow: hidden;
}

.hero-machine::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 10% 30%, rgba(45, 212, 191, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 70% 50% at 90% 70%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 60% 60% at 50% 10%, rgba(14, 165, 233, 0.08) 0%, transparent 50%);
    animation: heroMachineBgPulse 10s ease-in-out infinite;
}

@keyframes heroMachineBgPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.03);
    }
}

.hero-machine::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.3) 0%, rgba(45, 212, 191, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: heroMachineOrbFloat 12s ease-in-out infinite;
}

@keyframes heroMachineOrbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }

    33% {
        transform: translate(-40px, 30px) scale(1.15);
        opacity: 0.8;
    }

    66% {
        transform: translate(30px, -25px) scale(0.9);
        opacity: 0.5;
    }
}

.hero-machine .container {
    position: relative;
    z-index: 2;
}

.hero-machine .breadcrumbs {
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--gray-400);
    animation: heroBreadcrumbReveal 0.6s ease-out;
}

@keyframes heroBreadcrumbReveal {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-machine .breadcrumbs a {
    color: var(--gray-300);
    transition: color 0.3s ease;
}

.hero-machine .breadcrumbs a:hover {
    color: var(--teal-light);
}

.hero-machine h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.1;
    animation: heroMachineTitleReveal 0.8s ease-out;
}

@keyframes heroMachineTitleReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-machine h1 span {
    background: linear-gradient(135deg, #2dd4bf 0%, #22d3ee 50%, #2dd4bf 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroSpanShimmer 4s ease-in-out infinite;
}

@keyframes heroSpanShimmer {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }
}

.hero-machine .lead {
    font-size: 20px;
    color: var(--gray-300);
    max-width: 700px;
    margin-bottom: 32px;
    line-height: 1.6;
    animation: heroMachineLeadReveal 0.8s ease-out 0.15s both;
}

@keyframes heroMachineLeadReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-machine-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    animation: heroStatItemReveal 0.6s ease-out both;
}

.hero-stat-item:nth-child(1) {
    animation-delay: 0.25s;
}

.hero-stat-item:nth-child(2) {
    animation-delay: 0.35s;
}

.hero-stat-item:nth-child(3) {
    animation-delay: 0.45s;
}

.hero-stat-item:nth-child(4) {
    animation-delay: 0.55s;
}

@keyframes heroStatItemReveal {
    from {
        opacity: 0;
        transform: translateY(15px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-stat-icon {
    width: 52px;
    height: 52px;
    background: rgba(45, 212, 191, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 1px solid rgba(45, 212, 191, 0.35);
    box-shadow: 0 0 20px rgba(45, 212, 191, 0.2);
    transition: all 0.3s ease;
}

.hero-stat-item:hover .hero-stat-icon {
    box-shadow: 0 0 30px rgba(45, 212, 191, 0.4);
    transform: scale(1.05);
}

.hero-stat-item .stat-value {
    font-size: 26px;
    font-weight: 800;
    color: var(--teal-light);
    text-shadow: 0 0 20px rgba(45, 212, 191, 0.3);
}

.hero-stat-item .stat-label {
    font-size: 13px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-machine-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: heroActionsReveal 0.8s ease-out 0.5s both;
}

@keyframes heroActionsReveal {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-machine-actions .btn-primary {
    box-shadow: 0 0 25px rgba(45, 212, 191, 0.35);
    transition: all 0.3s ease;
}

.hero-machine-actions .btn-primary:hover {
    box-shadow: 0 0 40px rgba(45, 212, 191, 0.55);
    transform: translateY(-3px);
}

/* ICON FEATURE CARDS */
.feature-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.feature-icon-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: center;
    transition: all var(--transition-spring);
    position: relative;
    overflow: hidden;
}

.feature-icon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-teal);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.feature-icon-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(45, 212, 191, 0.1);
}

.feature-icon-card:hover::before {
    transform: scaleX(1);
}

.feature-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.15) 0%, rgba(34, 211, 238, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--teal);
    transition: all var(--transition-bounce);
}

.feature-icon-card:hover .feature-icon-circle {
    background: var(--gradient-teal);
    color: var(--white);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: var(--shadow-teal);
}

.feature-icon-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.feature-icon-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* BENEFITS SECTION */
.benefits-section {
    background: var(--gray-50);
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.benefit-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal);
}

.benefit-number {
    width: 48px;
    height: 48px;
    background: var(--gradient-teal);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: var(--shadow-teal);
}

.benefit-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.benefit-content p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ENHANCED SPECIFICATIONS TABLE */
.specs-enhanced {
    overflow-x: auto;
    margin: 40px 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.specs-enhanced table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    min-width: 600px;
}

.specs-enhanced th {
    background: var(--gradient-teal);
    color: var(--white);
    padding: 18px 24px;
    text-align: left;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.specs-enhanced th:first-child {
    border-radius: var(--radius-lg) 0 0 0;
}

.specs-enhanced th:last-child {
    border-radius: 0 var(--radius-lg) 0 0;
}

.specs-enhanced td {
    padding: 18px 24px;
    border-bottom: 1px solid var(--gray-200);
    font-size: 15px;
    color: var(--gray-700);
}

.specs-enhanced tr:hover td {
    background: rgba(45, 212, 191, 0.05);
}

.specs-enhanced tr:last-child td:first-child {
    border-radius: 0 0 0 var(--radius-lg);
}

.specs-enhanced tr:last-child td:last-child {
    border-radius: 0 0 var(--radius-lg) 0;
}

.specs-enhanced .model-highlight {
    font-weight: 700;
    color: var(--teal);
}

/* GALLERY GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 15, 26, 0.8) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 1;
}

.gallery-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    font-size: 32px;
    opacity: 0;
    transition: all var(--transition-bounce);
    z-index: 2;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-base);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

/* VIDEO SECTION */
.video-container {
    position: relative;
    width: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin: 40px 0;
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    background: var(--gradient-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    cursor: pointer;
    transition: all var(--transition-bounce);
    box-shadow: var(--shadow-teal);
}

.video-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 60px rgba(45, 212, 191, 0.5);
}

.video-placeholder p {
    color: var(--gray-400);
    font-size: 16px;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ENHANCED FAQ */
.faq-enhanced {
    margin: 40px 0;
}

.faq-enhanced-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-enhanced-item:hover {
    border-color: var(--teal);
    box-shadow: var(--shadow-md);
}

.faq-enhanced-item summary {
    padding: 24px 28px;
    font-weight: 700;
    font-size: 16px;
    color: var(--navy);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-enhanced-item summary::-webkit-details-marker {
    display: none;
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.15) 0%, rgba(34, 211, 238, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--teal);
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.faq-enhanced-item[open] .faq-icon {
    background: var(--gradient-teal);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-enhanced-item .faq-answer {
    padding: 0 28px 24px;
    color: var(--gray-600);
    line-height: 1.8;
    animation: fadeSlideIn 0.3s ease;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CITY LINKS GRID */
.city-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 40px 0;
}

.city-link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    color: var(--gray-700);
    font-weight: 600;
    font-size: 14px;
    transition: all var(--transition-base);
}

.city-link-card:hover {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
    transform: translateY(-4px);
    box-shadow: var(--shadow-teal);
}

.city-link-card .arrow {
    opacity: 0;
    transform: translateX(-8px);
    transition: all var(--transition-base);
}

.city-link-card:hover .arrow {
    opacity: 1;
    transform: translateX(0);
}

/* INTERNAL LINKS GRID - For SEO Cross-Linking */
.internal-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.industry-link-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    color: var(--gray-700);
    font-weight: 600;
    font-size: 15px;
    transition: all var(--transition-base);
    text-decoration: none;
}

.industry-link-card:hover {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    color: var(--white);
    border-color: var(--teal);
    transform: translateY(-4px);
    box-shadow: var(--shadow-teal);
}

.industry-link-card .icon {
    width: 44px;
    height: 44px;
    background: rgba(45, 212, 191, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.industry-link-card:hover .icon {
    background: rgba(255, 255, 255, 0.2);
}

.industry-link-card .title {
    flex-grow: 1;
}

.industry-link-card .arrow {
    opacity: 0;
    transform: translateX(-8px);
    transition: all var(--transition-base);
    font-size: 18px;
}

.industry-link-card:hover .arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive internal links */
@media (max-width: 1024px) {
    .internal-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .internal-links-grid {
        grid-template-columns: 1fr;
    }
}

.why-choose-section {
    background: var(--navy);
    padding: 60px 0;
    margin: 60px 0;
    border-radius: var(--radius-2xl);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    opacity: 0.4;
}

.why-choose-section .container {
    position: relative;
    z-index: 2;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.why-choose-item {
    text-align: center;
    padding: 24px;
}

.why-choose-icon {
    width: 64px;
    height: 64px;
    background: rgba(45, 212, 191, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
    border: 1px solid rgba(45, 212, 191, 0.3);
}

.why-choose-item h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.why-choose-item p {
    color: var(--gray-400);
    font-size: 14px;
    line-height: 1.6;
}

/* RELATED MACHINES SECTION */
.related-machines {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.related-machine-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    transition: all var(--transition-base);
}

.related-machine-card:hover {
    border-color: var(--teal);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.related-machine-card .icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.related-machine-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.related-machine-card a {
    font-size: 13px;
    color: var(--teal);
    font-weight: 600;
}

.related-machine-card a:hover {
    text-decoration: underline;
}

/* INQUIRY SECTION STYLING */
.inquiry-section {
    background: var(--gray-50);
    padding: 60px;
    border-radius: var(--radius-2xl);
    margin: 60px 0;
}

.inquiry-section .section-title {
    margin-bottom: 12px;
}

.inquiry-section .lead-text {
    color: var(--gray-500);
    margin-bottom: 32px;
    font-size: 16px;
}

.inquiry-form {
    max-width: 600px;
}

.inquiry-form .form-control {
    margin-bottom: 16px;
}

.inquiry-form .btn-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* MACHINE PAGE RESPONSIVE */
@media (max-width: 1024px) {
    .feature-icon-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .city-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .related-machines {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-machine h1 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .hero-machine {
        padding: 60px 0 40px;
    }

    .hero-machine h1 {
        font-size: 32px;
    }

    .hero-machine .lead {
        font-size: 16px;
    }

    .hero-machine-stats {
        flex-direction: column;
        gap: 16px;
    }

    .feature-icon-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .city-links-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .related-machines {
        grid-template-columns: repeat(2, 1fr);
    }

    .inquiry-section {
        padding: 40px 24px;
    }

    /* Industry Page Responsive Layouts */
    .industry-overview-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .stats-grid-2x2 {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .industry-features-grid {
        grid-template-columns: 1fr !important;
    }

    .industry-quote-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    /* Fix inline grid styles on industry pages - overview sections */
    [style*="grid-template-columns: 1fr 1fr"][style*="gap: 60px"] {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    /* Stack 3-column grids to 1 column on mobile */
    .grid-3 {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
}

@media (max-width: 480px) {
    .hero-machine h1 {
        font-size: 26px;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }

    .related-machines {
        grid-template-columns: 1fr;
    }
}