.lead-handoff .btn-outline {
    color: var(--text-primary);
    border-color: var(--neutral-300);
    backdrop-filter: none;
}

.lead-handoff .btn-outline:hover {
    background: var(--neutral-100);
    border-color: var(--neutral-400);
    color: var(--text-primary);
}
/* 제이원로보틱스 - 프리미엄 산업용 웹사이트 스타일시트 */

/* CSS 변수 정의 - 프리미엄 색상 팔레트 */
:root {
    /* 메인 색상 */
    --primary-color: #1e293b;
    --primary-light: #334155;
    --primary-dark: #0f172a;
    
    /* 보조 색상 */
    --secondary-color: #3b82f6;
    --secondary-light: #60a5fa;
    --secondary-dark: #1d4ed8;
    
    /* 강조 색상 */
    --accent-color: #f59e0b;
    --accent-light: #fbbf24;
    --accent-dark: #d97706;
    
    /* 중성 색상 */
    --neutral-50: #f8fafc;
    --neutral-100: #f1f5f9;
    --neutral-200: #e2e8f0;
    --neutral-300: #cbd5e1;
    --neutral-400: #94a3b8;
    --neutral-500: #64748b;
    --neutral-600: #475569;
    --neutral-700: #334155;
    --neutral-800: #1e293b;
    --neutral-900: #0f172a;
    
    /* 텍스트 색상 */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --text-white: #ffffff;
    
    /* 배경 색상 */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-dark: #0f172a;
    --bg-card: #ffffff;
    --bg-overlay: rgba(15, 23, 42, 0.8);
    
    /* 그라데이션 */
    --gradient-primary: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    --gradient-secondary: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    
    /* 그림자 */
    --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);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.1);
    
    /* 테두리 반경 */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* 간격 */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* 타이포그래피 */
    --font-family-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-family-mono: 'JetBrains Mono', 'Fira Code', monospace;
    
    /* 전환 효과 */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* 기본 리셋 및 기본 스타일 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-family-sans);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 타이포그래피 */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.025em;
}

h2 {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

h3 {
    font-size: 1.875rem;
    font-weight: 600;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

h5 {
    font-size: 1.25rem;
    font-weight: 600;
}

h6 {
    font-size: 1.125rem;
    font-weight: 600;
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
}

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

a:hover {
    color: var(--secondary-dark);
}

/* 컨테이너 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.container-fluid {
    width: 100%;
    padding: 0 var(--spacing-lg);
}

/* 헤더 */
.header {
    background: transparent;
    backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition-normal);
    box-shadow: none;
}

.header.scrolled {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    background: rgba(255, 255, 255, 0.9);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) var(--spacing-xl);
    min-height: 76px;
    transition: var(--transition-normal);
}

.header.scrolled .header-content {
    min-height: 64px;
}

.logo {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-normal);
}

.logo:hover {
    transform: scale(1.05);
}

.logo {
    margin-left: var(--spacing-lg);
}

.logo-text { line-height: 1.1; }
.logo-ko {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}
.logo-en {
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.9;
    letter-spacing: 0.2px;
}

/* Transparent header: white logo text over video */
.header:not(.scrolled) .logo,
.header:not(.scrolled) .logo * {
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.55);
}

/* 네비게이션 */
.nav {
    display: flex;
    align-items: center;
}

/* Minimal header: hide nav list (we use overlay menu instead) */
.nav-list { display: none !important; }

/* Hamburger color on transparent header */
.header:not(.scrolled) .mobile-menu-toggle span {
    background: #ffffff;
}
.header.scrolled .mobile-menu-toggle span {
    background: var(--text-primary);
}

/* Skip link: hide until focus for accessibility without visual glitch */
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.skip-link:focus {
    left: 16px;
    top: 8px;
    width: auto;
    height: auto;
    background: #fff;
    color: #000;
    padding: 6px 10px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    z-index: 2000;
}

/* Remove default focus ring on logo for cleaner look over video */
.logo:focus {
    outline: none;
}

/* Overlay menu (full-screen) */
.menu-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    z-index: 2000;
    align-items: stretch;
    justify-content: flex-end;
    background: rgba(0,0,0,0.25); /* dim background */
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 240ms ease;
}
.menu-overlay.open {
    opacity: 1;
    pointer-events: auto;
}
.menu-overlay .menu-content {
    width: min(360px, 86vw);
    height: 100%;
    background: #ffffff;
    color: var(--text-primary);
    padding: var(--spacing-xl);
    box-shadow: -12px 0 30px rgba(0,0,0,0.12);
    position: relative;
    transform: translateX(100%);
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}
.menu-overlay.open .menu-content {
    transform: translateX(0);
}
.menu-overlay ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}
.menu-overlay a {
    display: block;
    padding: 1rem 1.25rem;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 700;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-xl);
    background: var(--bg-card);
    transition: transform var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
}
.menu-overlay a:hover {
    transform: translateY(-2px);
    background: var(--neutral-100);
    border-color: var(--neutral-300);
}

/* Drawer close button */
.menu-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--neutral-200);
    background: var(--bg-card);
    color: var(--text-primary);
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}
.menu-close:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    background: var(--neutral-100);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    margin: 0;
    padding: 0;
}

.nav-list li a {
    font-weight: 500;
    color: var(--text-secondary);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    position: relative;
}

.nav-list li a:hover,
.nav-list li a.active {
    color: var(--text-primary);
    background: var(--neutral-100);
}

.nav-list li a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--secondary-color);
    border-radius: var(--radius-full);
}

/* Mega menu */
.nav-list .nav-item {
    position: relative;
}
.mega-panel {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    width: min(1100px, 92vw);
    background: var(--bg-card);
    border: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    margin-top: var(--spacing-sm);
    z-index: 1001;
}
.mega-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--spacing-xl);
}
.mega-col h4 {
    font-size: 0.95rem;
    color: var(--neutral-700);
    margin-bottom: var(--spacing-sm);
}
.mega-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mega-col li + li {
    margin-top: var(--spacing-sm);
}
.mega-col a {
    color: var(--text-secondary);
}
.mega-col a:hover {
    color: var(--text-primary);
}
.nav-item.has-mega:hover > .mega-panel,
.nav-item.has-mega:focus-within > .mega-panel {
    display: block;
}

@media (max-width: 768px) {
    .mega-panel {
        position: static;
        transform: none;
        width: 100%;
        box-shadow: none;
        border-radius: var(--radius-lg);
        margin-top: var(--spacing-sm);
        display: block;
        padding: var(--spacing-lg);
    }
    .mega-grid {
        grid-template-columns: 1fr;
    }
}
/* 모바일 메뉴 토글 */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-sm);
    margin-right: var(--spacing-lg);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* 히어로 섹션 */
.hero {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    color: var(--text-white);
    padding: 8rem 0 7rem;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.7) 0%, rgba(51, 65, 85, 0.5) 50%, rgba(71, 85, 105, 0.3) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 40% 60%, rgba(16, 185, 129, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 60% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Scroll reveal utilities */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.fade-in.revealed { opacity: 1; transform: none; }
.reveal.slide-up.revealed { opacity: 1; transform: translateY(0); }
.reveal.float-in {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
}
.reveal.float-in.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--text-white);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title {
    /* Ensure strong readability across all subpages with dark hero backgrounds */
    -webkit-text-fill-color: #ffffff !important;
    color: #ffffff !important;
    opacity: 0.98 !important;
    text-shadow: 0 4px 10px rgba(0,0,0,0.35);
}

.hero-subtitle {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.95) !important;
    margin-bottom: var(--spacing-2xl);
    font-weight: 500;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.5px;
}

/* Force white titles on subpage hero variants as well */
.media-hero .hero-title,
.products-hero .hero-content h1,
.hero .hero-title {
    -webkit-text-fill-color: #ffffff !important;
    color: #ffffff !important;
    text-shadow: 0 4px 10px rgba(0,0,0,0.35);
}
.media-hero .hero-subtitle,
.products-hero .hero-content p {
    color: rgba(255,255,255,0.92) !important;
    text-shadow: 0 3px 6px rgba(0,0,0,0.35);
}

/* Ensure media subcategories (videos/solutions/cases/resources) titles are bright */
.media-hero h1 {
    color: #ffffff !important;
    text-shadow: 0 4px 10px rgba(0,0,0,0.35);
}
.media-hero p {
    color: rgba(255,255,255,0.92) !important;
    text-shadow: 0 3px 6px rgba(0,0,0,0.35);
}

.hero-cta {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-3xl);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-2xl);
    flex-wrap: wrap;
    margin: var(--spacing-2xl) 0;
}

/* 히어로 액션 버튼 묶음 간격 */
.hero-actions {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-2xl);
}

.hero-cinematic {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-xl);
    border-radius: var(--radius-2xl);
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.loop-status {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
}

.loop-duration {
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.loop-highlight {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
}

.loop-progress {
    position: relative;
    width: 100%;
    height: 6px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.15);
    overflow: hidden;
    margin-bottom: var(--spacing-lg);
}

.loop-progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0%;
    border-radius: var(--radius-full);
    background: linear-gradient(90deg, #3b82f6 0%, #f59e0b 100%);
    transition: width 0.2s ease;
}

.loop-switcher {
    display: inline-flex;
    gap: var(--spacing-sm);
    padding: 4px;
    border-radius: var(--radius-full);
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.18);
    margin-bottom: var(--spacing-lg);
}

.loop-button {
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.loop-button:hover,
.loop-button:focus-visible {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    outline: none;
}

.loop-button.active {
    background: linear-gradient(135deg, rgba(59,130,246,0.3), rgba(245,158,11,0.3));
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.loop-shotlist {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-sm);
    padding: 0;
    margin: 0;
}

.loop-shotlist li {
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: opacity var(--transition-normal);
}

.hero-fallback {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(135deg, rgba(15,23,42,0.85), rgba(30,41,59,0.75)), url('assets/images/hero_poster.jpg');
    background-size: cover;
    background-position: center;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: var(--spacing-2xl);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.hero-fallback-content {
    background: rgba(15, 23, 42, 0.8);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg) var(--spacing-xl);
    color: #ffffff;
    max-width: 360px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: var(--shadow-lg);
}

.hero-background.fallback-active .hero-fallback {
    opacity: 1;
    pointer-events: auto;
}

.hero-background.fallback-active video {
    opacity: 0;
}

.btn-fallback {
    margin-top: var(--spacing-md);
    width: 100%;
    border-color: rgba(255,255,255,0.4);
}

/* Lead generation funnel */
.lead-section {
    background: rgba(15, 23, 42, 0.04);
    padding-top: calc(var(--spacing-3xl) + 2rem);
    padding-bottom: var(--spacing-3xl);
    position: relative;
    z-index: 2;
}

.lead-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--spacing-2xl);
}

.funnel-card {
    background: var(--bg-card);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--neutral-100);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.funnel-stage {
    font-size: 0.85rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--neutral-500);
}

.funnel-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin: 0;
    padding: 0;
}

.funnel-list li {
    position: relative;
    padding-left: 1.25rem;
    color: var(--text-secondary);
}

.funnel-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

.funnel-kpi {
    display: flex;
    gap: var(--spacing-xl);
    padding: var(--spacing-md) 0;
    border-top: 1px solid var(--neutral-100);
    border-bottom: 1px solid var(--neutral-100);
}

.kpi-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.kpi-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.micro-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.micro-form label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.micro-form input,
.micro-form select,
.micro-form textarea {
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    background: var(--bg-primary);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.micro-form textarea {
    resize: vertical;
}

.micro-form input:focus,
.micro-form select:focus,
.micro-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.micro-form .btn {
    width: 100%;
    margin-top: var(--spacing-sm);
}

.section-brief {
    max-width: 720px;
    margin: 0 auto var(--spacing-2xl);
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
}

.stage-flow {
    display: flex;
    gap: var(--spacing-sm);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-muted);
}

.stage-flow span {
    color: var(--secondary-dark);
}

.stage-context {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: calc(-0.5 * var(--spacing-sm));
    margin-bottom: var(--spacing-md);
}

/* Industry playbooks */
.industry-section {
    background: #f8fafc;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--spacing-2xl);
}

.industry-card {
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid #e5e9f2;
    padding: var(--spacing-2xl);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.industry-card-header {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.industry-tag {
    align-self: flex-start;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.15);
    color: var(--secondary-dark);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.industry-stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--spacing-lg);
    border-top: 1px solid #edf0f7;
    border-bottom: 1px solid #edf0f7;
    padding: var(--spacing-lg) 0;
}

.industry-stack div {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.industry-stack dt {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.industry-stack dd {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.industry-kpis {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--spacing-sm);
}

.kpi-chip {
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #f8fafc;
    padding: var(--spacing-sm) var(--spacing-lg);
    text-align: center;
    min-height: 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    word-break: keep-all;
}

/* Lead + sales toolkit */
.lead-handoff {
    background: rgba(15, 23, 42, 0.04);
}

.hero-stats .stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    min-width: 140px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: var(--transition-normal);
}

.hero-stats .stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.25);
}

.hero-stats .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stats .stat-label {
    font-size: 1rem;
.trust-section {
    background: linear-gradient(180deg, #0f172a 0%, #1a1f2e 50%, #0a0f1a 100%);
    padding: calc(var(--spacing-3xl) * 2) 0;
    position: relative;
    overflow: hidden;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-3xl);
}

.trust-card {
    background: linear-gradient(135deg, rgba(20, 30, 50, 0.95) 0%, rgba(30, 45, 70, 0.92) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: var(--spacing-2xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(30px);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.trust-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.trust-card h3 {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 var(--spacing-md) 0;
    font-weight: 600;
}

.trust-value {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.trust-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.5;
}

.partner-wall {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-2xl);
}

.partner-wall > div {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: var(--spacing-xl);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.partner-wall > div:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.partner-wall img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.7);
    transition: opacity var(--transition-normal);
}

.partner-wall > div:hover img {
    opacity: 1;
}

/* Removed duplicate .partner-wall styles - using the grid version above */

.faq-section {
    background: linear-gradient(180deg, #0a0f1a 0%, #0f172a 50%, #1a1f2e 100%);
    padding: calc(var(--spacing-3xl) * 2) 0;
    position: relative;
    overflow: hidden;
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, rgba(20, 30, 50, 0.95) 0%, rgba(30, 45, 70, 0.92) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: var(--spacing-2xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(30px);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
}

.faq-item summary {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 var(--spacing-md) 0;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::marker {
    display: none;
}

.faq-item summary svg {
    flex-shrink: 0;
    color: var(--secondary-color);
    transition: transform var(--transition-normal);
}

.faq-item[open] summary svg {
    transform: rotate(45deg);
}

.faq-item p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 0 calc(var(--spacing-md) + 20px);
    padding-top: var(--spacing-sm);
}

.faq-item summary {
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    list-style: none;
    position: relative;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2rem;
    transition: transform var(--transition-fast);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    margin: var(--spacing-md) 0 0;
    color: var(--text-secondary);
}

.cta-banner-ultimate {
    background: linear-gradient(180deg, #0a0f1a 0%, #0f172a 50%, #1a1f2e 100%);
    padding: calc(var(--spacing-3xl) * 2.5) 0;
    position: relative;
    overflow: hidden;
}

.cta-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
        linear-gradient(135deg, #0a0f1a 0%, #0f172a 50%, #1a1f2e 100%);
    opacity: 0.8;
    animation: patternShift 20s ease-in-out infinite;
    overflow: hidden;
}

.pattern-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(59, 130, 246, 0.1);
    animation: orbitRotate 30s linear infinite;
}

.pattern-orbit-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
}

.pattern-orbit-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -150px;
    animation-duration: 40s;
    animation-direction: reverse;
}

@keyframes orbitRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.pattern-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.pattern-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: glowPulse 8s ease-in-out infinite;
}

.pattern-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    top: 10%;
    right: 10%;
}

.pattern-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, transparent 70%);
    bottom: 10%;
    left: 10%;
    animation-delay: 2s;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

@keyframes patternShift {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.cta-banner {
    background: linear-gradient(135deg, #0a0f1a 0%, #1a1f2e 30%, #0f172a 60%, #1e293b 100%);
    padding: calc(var(--spacing-3xl) * 1.5) 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 60%);
    pointer-events: none;
    animation: float 12s ease-in-out infinite;
    filter: blur(60px);
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 60%);
    pointer-events: none;
    animation: float 15s ease-in-out infinite reverse;
    filter: blur(60px);
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(30px, -30px) scale(1.1); opacity: 0.9; }
}

.cta-premium-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--spacing-3xl);
    align-items: start;
}

.cta-main-content {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 32px;
    padding: calc(var(--spacing-3xl) * 1.2);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    position: relative;
    overflow: hidden;
}

.cta-main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--secondary-color) 0%, 
        var(--accent-color) 50%,
        var(--secondary-color) 100%);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.cta-header-premium {
    margin-bottom: var(--spacing-3xl);
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 24px;
    margin-bottom: var(--spacing-xl);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.6);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.badge-text {
    color: var(--secondary-color);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.cta-title-premium {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 var(--spacing-lg) 0;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description-premium {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.25rem;
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
}

.cta-features-premium {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-3xl);
}

.feature-card-premium {
    display: flex;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary-color), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.feature-card-premium:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.feature-card-premium:hover::before {
    opacity: 1;
}

.feature-icon-premium {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    color: var(--secondary-color);
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.2);
}

.feature-content h4 {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 var(--spacing-xs) 0;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.cta-actions-premium {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 16px;
    transition: all var(--transition-normal);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary-premium {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2563eb 100%);
    color: #fff;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    border: none;
}

.btn-primary-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5);
}

.btn-outline-premium {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-outline-premium:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.customer-logos-premium {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: var(--spacing-3xl);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: sticky;
    top: var(--spacing-2xl);
}

.customer-logos-header {
    margin-bottom: var(--spacing-2xl);
}

.customer-logos-label-premium {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin: 0 0 var(--spacing-md) 0;
}

.customer-logos-divider {
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, transparent 100%);
    border-radius: 2px;
}

.customer-logos-grid-premium {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--spacing-md);
}

.customer-logo-item-premium {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: var(--spacing-lg);
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.customer-logo-item-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.customer-logo-item-premium:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.customer-logo-item-premium:hover::before {
    left: 100%;
}

.logo-placeholder-premium {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Ultimate CTA Styles - Card Grid Layout */
.cta-banner-ultimate .cta-cards-grid {
    position: relative;
    z-index: 1;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    grid-template-rows: auto auto auto auto !important;
    gap: var(--spacing-xl) !important;
    max-width: 1600px;
    margin: 0 auto var(--spacing-3xl);
}

.cta-banner-ultimate .cta-main-card {
    grid-column: 1 / 3 !important;
    grid-row: 1 !important;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.95) 100%) !important;
    border: 2px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 32px !important;
    padding: calc(var(--spacing-3xl) * 1.2) !important;
    box-shadow: 
        0 30px 100px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(255, 255, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(40px) !important;
    position: relative !important;
    overflow: hidden !important;
    display: block !important;
}

.cta-main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, 
        var(--secondary-color) 0%, 
        var(--accent-color) 50%,
        var(--secondary-color) 100%);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

.cta-banner-ultimate .main-card-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: var(--spacing-sm) !important;
    padding: var(--spacing-sm) var(--spacing-xl) !important;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(59, 130, 246, 0.15) 100%) !important;
    border: 1px solid rgba(59, 130, 246, 0.5) !important;
    border-radius: 50px !important;
    margin-bottom: var(--spacing-2xl) !important;
    position: relative !important;
    overflow: hidden !important;
}

.badge-pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.8);
    animation: pulse-dot 2s ease-in-out infinite;
}

.main-card-badge span {
    color: var(--secondary-color);
    font-size: 0.875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    position: relative;
    z-index: 1;
}

.cta-banner-ultimate .main-card-title {
    display: flex !important;
    flex-direction: column !important;
    gap: var(--spacing-xs) !important;
    margin: 0 0 var(--spacing-lg) 0 !important;
}

.cta-banner-ultimate .main-card-title span {
    display: block !important;
    font-size: 4rem !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    letter-spacing: -0.04em !important;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.cta-banner-ultimate .main-card-desc {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1.25rem !important;
    line-height: 1.7 !important;
    margin: 0 !important;
    font-weight: 400 !important;
}

.cta-banner-ultimate .cta-stat-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%) !important;
    border: 2px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 24px !important;
    padding: var(--spacing-2xl) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: var(--spacing-md) !important;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(30px) !important;
    transition: all var(--transition-normal);
    position: relative !important;
    overflow: hidden !important;
}

.cta-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.cta-stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.cta-stat-card:hover::before {
    opacity: 1;
}

.stat-card-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(59, 130, 246, 0.2) 100%);
    border: 2px solid rgba(59, 130, 246, 0.5);
    border-radius: 20px;
    color: var(--secondary-color);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.4);
}

.stat-card-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--secondary-color);
    line-height: 1;
}

.stat-card-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

.cta-banner-ultimate .cta-service-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%) !important;
    border: 2px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 24px !important;
    padding: var(--spacing-2xl) !important;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(30px) !important;
    transition: all var(--transition-normal);
    position: relative !important;
    overflow: hidden !important;
    grid-row: 2 !important;
    display: block !important;
}

.cta-service-card:nth-of-type(1) {
    grid-column: 1;
}

.cta-service-card:nth-of-type(2) {
    grid-column: 2;
}

.cta-service-card:nth-of-type(3) {
    grid-column: 3;
}

.cta-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary-color), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.cta-service-card:hover {
    transform: translateX(8px) translateY(-4px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

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

.service-card-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.service-card-icon-wrapper {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(59, 130, 246, 0.15) 100%);
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 16px;
    color: var(--secondary-color);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
    flex-shrink: 0;
}

.service-card-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.service-card-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.cta-action-card {
    grid-column: 1 / 5;
    grid-row: 3;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%);
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    padding: var(--spacing-3xl);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    position: relative;
    overflow: hidden;
}

.cta-action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color), var(--secondary-color));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

.action-card-header {
    margin-bottom: var(--spacing-2xl);
}

.action-card-title {
    color: #fff;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
}

.action-card-buttons {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.action-btn-primary,
.action-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 16px;
    transition: all var(--transition-normal);
    text-decoration: none;
    flex: 1;
    min-width: 200px;
}

.action-btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1d4ed8 100%);
    color: #fff;
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.5);
    border: none;
}

.action-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 55px rgba(59, 130, 246, 0.6);
}

.action-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.action-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-4px);
}

.customers-section-card {
    grid-column: 1 / 5;
    grid-row: 4;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.85) 100%);
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 32px;
    padding: var(--spacing-3xl);
    backdrop-filter: blur(30px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.customers-section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color), var(--secondary-color));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

.customers-section-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
}

.customers-section-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(59, 130, 246, 0.15) 100%);
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 16px;
    color: var(--secondary-color);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
}

.customers-section-title {
    color: #fff;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
}

.customers-logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.customer-logo-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: var(--spacing-xl);
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.customer-logo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.customer-logo-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.customer-logo-card:hover::before {
    left: 100%;
}

.customer-logo-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    font-weight: 600;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-hero-card-new {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: calc(var(--spacing-3xl) * 1.5);
    box-shadow: 
        0 30px 100px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(40px);
    position: relative;
    overflow: hidden;
}

.cta-hero-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, 
        var(--secondary-color) 0%, 
        var(--accent-color) 50%,
        var(--secondary-color) 100%);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-xl);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 50px;
    margin-bottom: var(--spacing-2xl);
    position: relative;
    overflow: hidden;
}

.badge-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.5) 0%, transparent 70%);
    animation: badgePulse 3s ease-in-out infinite;
    pointer-events: none;
}

.hero-badge-new span {
    color: var(--secondary-color);
    font-size: 0.875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    position: relative;
    z-index: 1;
}

.hero-title-new {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin: 0 0 var(--spacing-xl) 0;
}

.title-main,
.title-sub {
    display: block;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-main::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 200px;
    height: 6px;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
    border-radius: 3px;
}

.hero-description-new {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.5rem;
    line-height: 1.8;
    margin: 0 0 var(--spacing-3xl) 0;
    font-weight: 400;
}

.stats-row-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.stat-box-new {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.stat-box-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary-color), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.stat-box-new:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4);
}

.stat-box-new:hover::before {
    opacity: 1;
}

.stat-icon-box {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(59, 130, 246, 0.15) 100%);
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 18px;
    color: var(--secondary-color);
    flex-shrink: 0;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
}

.stat-info {
    flex: 1;
}

.stat-num {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-xs);
    line-height: 1;
}

.stat-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.services-card-new,
.cta-buttons-card-new {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.85) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: var(--spacing-3xl);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    position: relative;
    overflow: hidden;
}

.services-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
}

.cta-buttons-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
}

.card-header-new {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
}

.header-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 14px;
    color: var(--secondary-color);
}

.card-header-new h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.services-list-new {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.service-item-new {
    display: flex;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-item-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary-color), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.service-item-new:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.service-item-new:hover::before {
    opacity: 1;
}

.service-icon-new {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 18px;
    color: var(--secondary-color);
    flex-shrink: 0;
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.25);
}

.service-content-new h4 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 var(--spacing-xs) 0;
}

.service-content-new p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.cta-buttons-new {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.cta-btn-primary-new,
.cta-btn-secondary-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    padding: var(--spacing-xl) var(--spacing-2xl);
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 18px;
    transition: all var(--transition-normal);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.cta-btn-primary-new {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1d4ed8 100%);
    color: #fff;
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.5);
    border: none;
}

.cta-btn-primary-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 55px rgba(59, 130, 246, 0.6);
}

.cta-btn-secondary-new {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.cta-btn-secondary-new:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
}

.customers-section-new {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.75) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: var(--spacing-3xl);
    backdrop-filter: blur(30px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.customers-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color), var(--secondary-color));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

.customers-header-new {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
}

.customers-icon-new {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(59, 130, 246, 0.15) 100%);
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 16px;
    color: var(--secondary-color);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
}

.customers-header-new h3 {
    color: #fff;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.customers-divider-new {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, transparent 100%);
    border-radius: 2px;
}

.customers-grid-new {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--spacing-lg);
}

.customer-item-new {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: var(--spacing-xl);
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.customer-item-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s ease;
}

.customer-item-new:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5);
}

.customer-item-new:hover::before {
    left: 100%;
}

.customer-name-new {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-hero-card {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: calc(var(--spacing-3xl) * 1.5);
    box-shadow: 
        0 30px 100px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--secondary-color) 0%, 
        var(--accent-color) 50%,
        var(--secondary-color) 100%);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

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

.cta-hero-section {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.cta-badge-ultimate {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-xl);
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    margin-bottom: var(--spacing-2xl);
    position: relative;
    overflow: hidden;
}

.badge-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
    animation: badgePulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes badgePulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.5); }
}

.badge-text-ultimate {
    color: var(--secondary-color);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    position: relative;
    z-index: 1;
}

.cta-title-ultimate {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    margin: 0 0 var(--spacing-2xl) 0;
}

.title-line-1,
.title-line-2 {
    display: block;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-line-1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    border-radius: 2px;
}

.cta-description-ultimate {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.375rem;
    line-height: 1.8;
    margin: 0 0 var(--spacing-3xl) 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    max-width: 800px;
    margin: 0 auto var(--spacing-3xl);
}

.stat-card-ultimate {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.stat-card-ultimate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary-color), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.stat-card-ultimate:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.stat-card-ultimate:hover::before {
    opacity: 1;
}

.stat-icon-wrapper {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    color: var(--secondary-color);
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.2);
}

.stat-content {
    flex: 1;
    text-align: left;
}

.stat-number-ultimate {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-xs);
    line-height: 1;
}

.stat-label-ultimate {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.stat-item-ultimate {
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

.stat-item-ultimate:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.cta-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--spacing-3xl);
    align-items: start;
}

.features-card-ultimate {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: var(--spacing-3xl);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.features-card-ultimate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
}

.features-header {
    margin-bottom: var(--spacing-2xl);
}

.features-header h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 var(--spacing-md) 0;
}

.features-divider {
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, transparent 100%);
    border-radius: 2px;
}

.cta-features-ultimate {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.feature-item-ultimate {
    display: flex;
    gap: var(--spacing-lg);
    padding: var(--spacing-2xl);
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-item-ultimate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary-color), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.feature-item-ultimate:hover {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(12px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.feature-item-ultimate:hover::before {
    opacity: 1;
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 18px;
    color: var(--secondary-color);
    flex-shrink: 0;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.2);
}

.feature-text h3 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 var(--spacing-xs) 0;
}

.feature-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.actions-card-ultimate {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: var(--spacing-3xl);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: sticky;
    top: var(--spacing-2xl);
    height: fit-content;
}

.actions-card-ultimate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
}

.actions-header {
    margin-bottom: var(--spacing-2xl);
}

.actions-header h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 var(--spacing-md) 0;
}

.actions-divider {
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color) 0%, transparent 100%);
    border-radius: 2px;
}

.cta-actions-ultimate {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.btn-ultimate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    padding: var(--spacing-xl) var(--spacing-2xl);
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 18px;
    transition: all var(--transition-normal);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary-ultimate {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1d4ed8 100%);
    color: #fff;
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.4);
    border: none;
}

.btn-primary-ultimate:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(59, 130, 246, 0.5);
}

.btn-secondary-ultimate {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary-ultimate:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
}

.customer-logos-ultimate {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: var(--spacing-3xl);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.logos-header-ultimate {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
}

.logos-icon-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.logos-header-ultimate h3 {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.logos-divider-ultimate {
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, transparent 100%);
    border-radius: 2px;
    margin-bottom: var(--spacing-2xl);
}

.logos-grid-ultimate {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--spacing-md);
}

.logo-item-ultimate {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: var(--spacing-lg);
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.logo-item-ultimate::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.logo-item-ultimate:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.logo-item-ultimate:hover::before {
    left: 100%;
}

.logo-text-ultimate {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.btn-outline.dark-outline {
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}

.btn-outline.dark-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
    color: #fff;
}

    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

/* 버튼 스타일 */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    min-height: 48px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-secondary);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    color: var(--text-white);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--text-white);
}

.btn-gold {
    background: var(--gradient-accent);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    color: var(--text-white);
}

/* 섹션 스타일 */
.section {
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.section-alt {
    background: var(--bg-secondary);
}

.section-dark {
    background: var(--gradient-primary);
    color: var(--text-white);
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.title-accent {
    position: relative;
    display: inline-block;
    padding-bottom: var(--spacing-sm);
}
.title-accent::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    bottom: 0;
    height: 3px;
    width: 80px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-full);
    transition: transform 600ms ease;
}
.revealed .title-accent::after,
.section-header.animate-in .title-accent::after {
    transform: translateX(-50%) scaleX(1);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--spacing-2xl);
}

/* 카드 스타일 */
.card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--neutral-200);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

/* Carousel */
.carousel {
    position: relative;
    overflow: hidden;
}
.carousel-track {
    display: flex;
    gap: var(--spacing-xl);
    transition: transform 500ms ease;
    will-change: transform;
}
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: 1px solid var(--neutral-200);
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 2;
}
.carousel-nav.prev { left: 8px; }
.carousel-nav.next { right: 8px; }
.carousel-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: var(--spacing-lg);
}
.carousel-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--neutral-300);
    cursor: pointer;
}
.carousel-dots button.active {
    background: var(--secondary-color);
}

/* Product Card (slider item) */
.product-card {
    min-width: 320px;
    max-width: 360px;
    background: var(--bg-card);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}
.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform var(--transition-normal);
}
.product-card .product-info {
    padding: var(--spacing-lg);
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}
.product-card:hover img {
    transform: scale(1.05);
}
.product-card .btn {
    margin-top: var(--spacing-sm);
}
.product-card:hover .btn-outline {
    background: var(--text-white);
    color: var(--secondary-color);
    border-color: var(--text-white);
}

/* Alternating image-text section */
.alt-section .alt-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--spacing-2xl);
    align-items: center;
    margin-bottom: var(--spacing-2xl);
}
.alt-section .alt-image img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-normal);
}
.alt-section .alt-row:hover .alt-image img {
    transform: scale(1.02);
}
.alt-section .alt-text h3 {
    margin-bottom: var(--spacing-sm);
}
.alt-section .alt-text p {
    margin-bottom: var(--spacing-md);
}
@media (max-width: 768px) {
    .alt-section .alt-row {
        grid-template-columns: 1fr;
    }
}

/* Video thumbnail hover */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-xl);
}
.video-thumb {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}
.video-thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-normal);
}
.video-thumb::after {
    content: '▶';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    background: rgba(0,0,0,0.6);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 20px;
    transition: background var(--transition-fast), transform var(--transition-fast);
}
.video-thumb:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}
.video-thumb:hover img {
    transform: scale(1.05);
}
.video-thumb:hover::after {
    background: rgba(0,0,0,0.8);
    transform: translate(-50%, -50%) scale(1.05);
}

/* Tabs (community/resources) */
.tabs {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}
.tab {
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-full);
    border: 1px solid var(--neutral-200);
    background: var(--bg-card);
    cursor: pointer;
    font-weight: 600;
    color: var(--text-secondary);
}
.tab.active {
    background: var(--gradient-secondary);
    color: var(--text-white);
    border-color: transparent;
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}

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

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

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

.card-header {
    margin-bottom: var(--spacing-lg);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.card-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* 그리드 레이아웃 */
.grid {
    display: grid;
    gap: var(--spacing-xl);
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* 아이콘 스타일 */
.icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    flex-shrink: 0;
}

.icon-lg {
    width: 32px;
    height: 32px;
}

.icon-xl {
    width: 48px;
    height: 48px;
}

/* 통계 카드 */
.stat-card {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--neutral-200);
    transition: var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
    line-height: 1;
}

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

/* 푸터 */
.footer {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
    margin-top: var(--spacing-3xl);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section h3 {
    color: var(--text-white);
    margin-bottom: var(--spacing-lg);
    font-size: 1.25rem;
    font-weight: 600;
}

.footer-section p,
.footer-section li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-sm);
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.footer-section a:hover {
    color: var(--text-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-lg);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* 브레드크럼 */
.breadcrumb {
    background: var(--bg-secondary);
    padding: var(--spacing-md) var(--spacing-xl);
    margin-top: 80px;
    border-bottom: 1px solid var(--neutral-200);
}

.breadcrumb ol {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    margin: 0;
    padding: 0;
}

.breadcrumb li {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.breadcrumb li:not(:last-child)::after {
    content: '›';
    margin-left: var(--spacing-sm);
    color: var(--neutral-400);
}

.breadcrumb a {
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--text-primary);
}

/* 폼 스타일 */
.form-group {
    margin-bottom: var(--spacing-lg);
}

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

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: var(--spacing-md);
    border: 2px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--bg-primary);
    color: var(--text-primary);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

/* 모달 스타일 */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-overlay);
    backdrop-filter: blur(5px);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow-2xl);
    animation: slideUp 0.3s ease;
}

/* 애니메이션 */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 유틸리티 클래스 */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.hidden { display: none; }
.visible { display: block; }

/* 반응형 디자인 */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .grid-4 {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

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

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

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

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

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

}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        margin-right: var(--spacing-md);
    }
    
    .header-content {
        padding: var(--spacing-md) var(--spacing-lg);
    }
    .logo { margin-left: var(--spacing-md); }
    
    .hero {
        padding: 6rem 0 4rem;
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

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

    .industry-stack {
        flex-direction: column;
    }

    .industry-kpis {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .cta-premium-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .cta-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }

    .cta-main-card {
        grid-column: 1 / 3;
        padding: var(--spacing-2xl);
    }

    .main-card-title span {
        font-size: 3rem;
    }

    .main-card-desc {
        font-size: 1.125rem;
    }

    .cta-stat-card {
        padding: var(--spacing-xl);
    }

    .stat-card-icon {
        width: 64px;
        height: 64px;
    }

    .stat-card-number {
        font-size: 2.5rem;
    }

    .cta-service-card {
        padding: var(--spacing-xl);
    }

    .cta-action-card {
        grid-column: 1 / 3;
        padding: var(--spacing-2xl);
    }

    .action-card-buttons {
        flex-direction: column;
    }

    .action-btn-primary,
    .action-btn-secondary {
        width: 100%;
        min-width: auto;
    }

    .customers-section-card {
        grid-column: 1 / 3;
        padding: var(--spacing-2xl);
    }

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

    .tech-card {
        padding: var(--spacing-lg);
    }

    .tech-metrics {
        gap: var(--spacing-sm);
    }

    .metric-item {
        min-width: 70px;
        padding: var(--spacing-xs) var(--spacing-sm);
    }

    .hero-cinematic {
        padding: var(--spacing-lg);
    }

    .loop-switcher {
        flex-wrap: wrap;
        justify-content: center;
    }

    .loop-shotlist {
        grid-template-columns: 1fr;
    }

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

    .industry-kpis {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .section {
        padding: var(--spacing-2xl) 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .card {
        padding: var(--spacing-lg);
    }
    
    .modal-content {
        padding: var(--spacing-lg);
        width: 95%;
    }

    .hero-cinematic {
        padding: var(--spacing-md);
    }

    .cta-banner-ultimate {
        padding: var(--spacing-3xl) 0;
    }

    .cta-cards-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .cta-main-card {
        grid-column: 1;
        padding: var(--spacing-xl);
    }

    .main-card-title span {
        font-size: 2.25rem;
    }

    .main-card-desc {
        font-size: 1rem;
    }

    .cta-stat-card {
        grid-column: 1;
        padding: var(--spacing-lg);
    }

    .stat-card-icon {
        width: 56px;
        height: 56px;
    }

    .stat-card-number {
        font-size: 2rem;
    }

    .cta-service-card {
        grid-column: 1;
        padding: var(--spacing-lg);
    }

    .service-card-icon-wrapper {
        width: 48px;
        height: 48px;
    }

    .service-card-title {
        font-size: 1.125rem;
    }

    .cta-action-card {
        grid-column: 1;
        padding: var(--spacing-xl);
    }

    .customers-section-card {
        grid-column: 1;
        padding: var(--spacing-xl);
    }

    .customers-logos-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .feature-text h3 {
        font-size: 1rem;
    }

    .feature-text p {
        font-size: 0.85rem;
    }

    .btn-ultimate {
        padding: var(--spacing-lg) var(--spacing-xl);
        font-size: 1rem;
    }

    .logos-grid-ultimate {
        grid-template-columns: 1fr;
    }

    .logo-item-ultimate {
        height: 70px;
        padding: var(--spacing-md);
    }

    .cta-premium-wrapper {
        gap: var(--spacing-xl);
    }

    .cta-main-content {
        padding: var(--spacing-2xl);
    }

    .customer-logos-premium {
        padding: var(--spacing-2xl);
    }

    .customer-logos-grid-premium {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .customer-logo-item-premium {
        height: 75px;
        padding: var(--spacing-md);
    }

    .cta-title-premium {
        font-size: 2rem;
    }

    .cta-description-premium {
        font-size: 1rem;
    }

    .feature-card-premium {
        padding: var(--spacing-lg);
        gap: var(--spacing-md);
    }

    .feature-icon-premium {
        width: 48px;
        height: 48px;
    }

    .feature-content h4 {
        font-size: 1rem;
    }

    .feature-content p {
        font-size: 0.85rem;
    }

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

    .tech-metrics {
        flex-direction: column;
        gap: var(--spacing-xs);
    }

    .metric-item {
        width: 100%;
    }
}

/* 스크롤바 스타일링 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--neutral-100);
}

::-webkit-scrollbar-thumb {
    background: var(--neutral-300);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neutral-400);
}

/* 선택 텍스트 스타일 */
::selection {
    background: var(--secondary-color);
    color: var(--text-white);
}

::-moz-selection {
    background: var(--secondary-color);
    color: var(--text-white);
}

/* 포커스 스타일 */
:focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* 타임라인 스타일 */
.timeline {
    position: relative;
    padding: var(--spacing-lg) 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-secondary);
}

.timeline-item {
    position: relative;
    margin-bottom: var(--spacing-2xl);
    padding-left: 80px;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.timeline-year {
    color: var(--text-white);
    font-weight: 700;
    font-size: 0.875rem;
}

.timeline-content h4 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* 지역 카드 스타일 */
.region-card {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--neutral-200);
    transition: var(--transition-normal);
}

.region-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.region-card h4 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.region-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-lg);
}

.region-stats {
    text-align: center;
}

.region-stats .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-xs);
    line-height: 1;
}

.region-stats .stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* 파트너 카드 스타일 */
.partner-card {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--neutral-200);
    transition: var(--transition-normal);
}

.partner-card:hover {
    background: var(--bg-card);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.partner-card h4 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.partner-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

/* 기술 카드 스타일 */
.tech-card {
    background: var(--bg-card);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--neutral-200);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
    opacity: 0;
    transition: var(--transition-normal);
}

.tech-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

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

.tech-card-header {
    text-align: left;
    margin-bottom: var(--spacing-xl);
}

.tech-icon {
    position: relative;
    width: 88px;
    height: 88px;
    margin: 0 auto var(--spacing-lg);
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--neutral-100);
    border: 1px solid var(--neutral-200);
    display: grid;
    place-items: center;
}
.tech-icon img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    display: block;
}

.tech-media {
    width: 100%;
    height: 180px;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    margin-bottom: var(--spacing-lg);
}
.tech-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ai-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.sensor-gradient {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.iot-gradient {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.tech-icon-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.tech-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.tech-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tech-content {
    margin-bottom: var(--spacing-xl);
    min-height: 90px;
}

.tech-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.tech-metrics {
    display: flex;
    gap: var(--spacing-md);
    justify-content: flex-start;
    flex-wrap: wrap;
}

.metric-item {
    text-align: center;
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    min-width: 90px;
    flex: 0 1 auto;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-xs);
    line-height: 1;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tech-footer {
    text-align: center;
    margin-top: auto;
}

/* 섹션 배경 스타일 */
.section-alt {
    background: var(--bg-secondary);
}

.section-dark {
    background: var(--gradient-primary);
    color: var(--text-white);
}

.section-dark .section-title,
.section-dark .section-subtitle {
    color: var(--text-white);
}

.section-dark .card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.section-dark .card-title,
.section-dark .card-subtitle,
.section-dark .tech-title,
.section-dark .tech-subtitle {
    color: var(--text-white);
}

.section-dark .card-content p,
.section-dark .tech-content p {
    color: rgba(255, 255, 255, 0.8);
}

.section-dark .stat-number {
    color: var(--accent-color);
}

.section-dark .stat-label {
    color: rgba(255, 255, 255, 0.7);
}

.section-dark .metric-value {
    color: var(--accent-color);
}

.section-dark .metric-label {
    color: rgba(255, 255, 255, 0.6);
}

/* 프린트 스타일 */
@media print {
    .header,
    .footer,
    .btn,
    .modal {
        display: none !important;
    }
    
    .hero {
        background: none !important;
        color: var(--text-primary) !important;
        padding: var(--spacing-lg) 0 !important;
    }
    
    .card {
        box-shadow: none !important;
        border: 1px solid var(--neutral-300) !important;
    }
}