/* ============================================
   PULSMARKETING.CZ - PROFESSIONAL AGENCY STYLES
   Modern, Glassmorphism, Gradient Design
   ============================================ */

/* CSS Variables */
:root {
    /* Primary Colors - Gold Accent */
    --primary: #f59e0b;
    --primary-light: #fbbf24;
    --primary-dark: #d97706;
    --primary-glow: rgba(245, 158, 11, 0.4);
    --primary-alpha: rgba(245, 158, 11, 0.1);

    /* Accent Colors */
    --accent-olive: #7c7a5d;
    --accent-sage: #9ca986;
    --accent-terracotta: #c87554;
    --accent-clay: #d4a574;
    --accent-green: #10b981;
    --accent-green-light: #34d399;

    /* Backgrounds & Surfaces - Dark Theme */
    --bg: #0a0a0f;
    --bg-light: #14141a;
    --surface: #121217;
    --surface-alt: #1a1a24;
    --surface-hover: #1e1e2a;
    --bg-card: rgba(30, 30, 42, 0.8);
    --bg-glass: rgba(18, 18, 23, 0.8);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --text-inverse: #0a0a0f;

    /* Borders */
    --border: rgba(245, 158, 11, 0.2);
    --border-light: rgba(245, 158, 11, 0.1);
    --border-strong: rgba(245, 158, 11, 0.4);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --gradient-olive: linear-gradient(135deg, #7c7a5d 0%, #9ca986 100%);
    --gradient-warm: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --gradient-hero: linear-gradient(135deg, #0a0a0f 0%, #14141a 50%, #0a0a0f 100%);
    --gradient-radial: radial-gradient(circle at 30% 50%, rgba(245, 158, 11, 0.15) 0%, transparent 50%);
    --gradient-surface: linear-gradient(180deg, #1e1e2a 0%, #121217 100%);

    /* Spacing */
    --container: 1280px;
    --section-padding: 120px;
    --section-padding-mobile: 80px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 20px rgba(245, 158, 11, 0.5), 0 0 40px rgba(245, 158, 11, 0.3);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);

    /* Glass Effect */
    --glass-bg: rgba(18, 18, 23, 0.8);
    --glass-border: rgba(245, 158, 11, 0.1);
    --glass-blur: blur(20px);

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: 0.2s var(--ease-out-expo);
    --transition-base: 0.4s var(--ease-out-expo);
    --transition-slow: 0.6s var(--ease-out-expo);

    /* Typography */
    --font-display: 'Space Grotesk', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

html.lenis {
    height: auto;
}

html.lenis body {
    height: auto;
}

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

::selection {
    background: var(--primary);
    color: white;
}

/* Container */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.preloader-logo {
    animation: preloader-spin 1.5s linear infinite;
}

.preloader-circle {
    stroke-dasharray: 175;
    stroke-dashoffset: 175;
    animation: preloader-dash 1.5s ease-in-out infinite;
}

@keyframes preloader-spin {
    100% { transform: rotate(360deg); }
}

@keyframes preloader-dash {
    0% { stroke-dashoffset: 175; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -175; }
}

.preloader-text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor, .cursor-follower {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    mix-blend-mode: difference;
    transition: transform 0.15s var(--ease-out-expo);
}

.cursor {
    width: 8px;
    height: 8px;
    background: var(--primary);
    transform: translate(-50%, -50%);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary);
    transform: translate(-50%, -50%);
    transition: transform 0.3s var(--ease-out-expo), width 0.3s, height 0.3s, border 0.3s;
}

.cursor-follower.hover {
    width: 60px;
    height: 60px;
    border-color: var(--primary);
    background: var(--primary-alpha);
}

@media (max-width: 1024px) {
    .cursor, .cursor-follower { display: none; }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-base);
}

.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.navbar.scrolled::before {
    opacity: 1;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    transition: transform var(--transition-fast);
}

.nav-logo:hover {
    transform: scale(1.02);
}

.nav-logo .logo-icon {
    flex-shrink: 0;
}

.logo-text {
    letter-spacing: -0.02em;
}

.logo-dot {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--text-primary);
}

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

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-icon {
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    min-width: 180px;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: rgba(245, 158, 11, 0.1);
    color: var(--primary);
    padding-left: 24px;
}

.btn-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 12px;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--primary-glow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn svg {
    position: relative;
    z-index: 1;
    transition: transform var(--transition-fast);
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 24px var(--primary-glow);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-warm);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px var(--primary-glow);
}

.btn-ghost {
    background: var(--surface);
    color: var(--text-primary);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: var(--surface-hover);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-light);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--text-inverse);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
    border-radius: 16px;
}

.btn-full {
    width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 140px 0 100px;
}

/* Particles Container */
.particles-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Hero Background */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-gradient-1 {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    animation: float 20s ease-in-out infinite;
}

.hero-gradient-2 {
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 50%;
    height: 70%;
    background: radial-gradient(ellipse, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    animation: float 25s ease-in-out infinite reverse;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(245, 158, 11, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 158, 11, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

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

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Content */
.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    50% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
}

.title-line {
    display: block;
}

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

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

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

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

/* Hero Clients */
.hero-clients {
    display: flex;
    align-items: center;
    gap: 16px;
}

.clients-label {
    font-size: 14px;
    color: var(--text-muted);
}

.clients-avatars {
    display: flex;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--bg);
    margin-left: -12px;
    overflow: hidden;
    animation: avatar-pop 0.5s var(--ease-out-back) calc(var(--delay) * 0.1s) both;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-more {
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
}

@keyframes avatar-pop {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
}

.hero-card-main {
    position: relative;
    width: 100%;
    height: 100%;
}

.card-glass {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--glass-bg);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.card-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.hero-illustration {
    width: 100%;
    height: 100%;
}

.chart-bar {
    /* Initial state for GSAP animation - don't set opacity: 0 here, let GSAP handle it */
    transform-origin: bottom;
    /* Removed CSS animation - using GSAP animation from script.js instead */
    /* animation: chart-grow 0.8s var(--ease-out-expo) calc(0.5s + var(--delay) * 0.1s) forwards; */
}

/* Commented out - GSAP handles this animation in script.js */
/* @keyframes chart-grow {
    to {
        opacity: 1;
        transform: scaleY(1);
    }
} */

.growth-line {
    stroke-dasharray: 500;
    stroke-dashoffset: 0;  /* Final state - GSAP will animate FROM 500 TO 0 */
    /* Removed CSS animation - using GSAP animation from script.js instead */
    /* animation: line-draw 1.5s var(--ease-out-expo) 1s forwards; */
}

/* Commented out - GSAP handles this animation in script.js */
/* @keyframes line-draw {
    to { stroke-dashoffset: 0; }
} */

.data-point {
    /* Let GSAP handle the animation instead of CSS */
    transform-origin: center;
}

.data-point:nth-child(8) { --delay: 0; }
.data-point:nth-child(9) { --delay: 1; }
.data-point:nth-child(10) { --delay: 2; }
.data-point:nth-child(11) { --delay: 3; }
.data-point:nth-child(12) { --delay: 4; }

@keyframes point-pop {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    /* Removed CSS animation - GSAP handles floating in script.js */
    /* animation: float-card 6s ease-in-out infinite; */
}

.floating-card-1 {
    top: 10%;
    left: -10%;
    /* animation-delay: 0s; */
}

.floating-card-2 {
    top: 40%;
    right: -15%;
    /* animation-delay: 2s; */
}

.floating-card-3 {
    bottom: 15%;
    left: 5%;
    /* animation-delay: 4s; */
}

/* Commented out - GSAP handles this animation in script.js */
/* @keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
} */

.floating-card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.floating-card-content {
    display: flex;
    flex-direction: column;
}

.floating-card-value {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.floating-card-label {
    font-size: 12px;
    color: var(--text-muted);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: var(--border);
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    width: 3px;
    height: 10px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    left: -1px;
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { top: 0; }
    50% { top: calc(100% - 10px); }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--primary-alpha);
    border: 1px solid var(--primary);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.section-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    background: var(--surface-alt);
}

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

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
}

.hero-stats .stat-item {
    padding: 24px;
    background: var(--surface-hover);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.hero-stats .stat-number,
.stat-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.hero-stats .stat-label,
.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.service-card {
    position: relative;
    padding: 40px 32px;
    background: var(--surface-hover);
    border: 1px solid var(--border);
    border-radius: 24px;
    transition: all var(--transition-base);
    overflow: hidden;
    will-change: transform, box-shadow;
    backface-visibility: hidden;
}

.service-card-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-radial);
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-light);
    box-shadow: var(--shadow-glow);
}

.service-card-featured {
    border-color: rgba(99, 102, 241, 0.3);
}

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

.service-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 6px 12px;
    background: var(--gradient-primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 100px;
}

.service-icon {
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.service-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.service-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

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

.service-features svg {
    color: var(--accent-green);
    flex-shrink: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-light);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all var(--transition-fast);
    position: relative;
    z-index: 1;
}

.service-link:hover {
    color: var(--text-primary);
    gap: 12px;
}

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

.portfolio {
    background: var(--surface);
}

.stats-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.stats-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 50%, var(--bg) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--surface-hover);
    border: 1px solid var(--border);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 600;
    color: var(--text-secondary);
    display: inline;
    margin-left: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
    margin-bottom: 20px;
}

.stat-bar {
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    width: 0;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 1.5s var(--ease-out-expo);
}

.stat-bar-fill.animated {
    width: var(--width);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
    background: var(--surface-alt);
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-progress {
    width: 100%;
    height: 0;
    background: var(--gradient-primary);
    transition: height 0.5s var(--ease-out-expo);
}

.process-step {
    display: flex;
    gap: 40px;
    padding: 40px 0;
    position: relative;
}

.step-marker {
    position: relative;
    flex-shrink: 0;
    width: 80px;
}

.step-number {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-light);
    letter-spacing: 0.05em;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.step-dot {
    position: absolute;
    top: 50%;
    left: 32px;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: var(--bg);
    border: 3px solid var(--border);
    border-radius: 50%;
    z-index: 1;
    transition: all var(--transition-fast);
}

.process-step:hover .step-dot {
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
}

.step-content {
    flex: 1;
    background: var(--surface-hover);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    transition: all var(--transition-base);
}

.process-step:hover .step-content {
    border-color: var(--border-light);
    transform: translateX(8px);
}

.step-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-alpha);
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 20px;
    color: var(--primary);
}

.step-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.step-duration {
    display: inline-flex;
    padding: 6px 14px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-light);
    font-size: 13px;
    font-weight: 600;
    border-radius: 100px;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    background: var(--surface-alt);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--surface-hover);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    transition: all var(--transition-base);
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.15);
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 24px;
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
}

.author-info {
    text-align: left;
}

.author-name {
    display: block;
    font-weight: 700;
    font-size: 16px;
    color: var(--text-primary);
}

.author-role {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
}

.swiper-pagination {
    margin-top: 40px !important;
    position: relative !important;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--border-light);
    opacity: 1;
    transition: all var(--transition-fast);
}

.swiper-pagination-bullet-active {
    width: 32px;
    border-radius: 4px;
    background: var(--primary);
}

.testimonials-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.nav-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-hover);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
    pointer-events: auto;
}

.nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.nav-btn-prev {
    margin-left: -80px;
}

.nav-btn-next {
    margin-right: -80px;
}

/* ============================================
   MESSAGE FLOW SECTION
   ============================================ */
.message-flow {
    background: var(--surface-alt);
    overflow: hidden;
}

.omnichannel-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

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

.omnichannel-visual {
    position: relative;
}

.channels-diagram {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(245, 158, 11, 0.1));
}

/* Hub Center Animation */
.hub-circle {
    animation: pulse-hub 3s ease-in-out infinite;
}

@keyframes pulse-hub {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Channel Nodes Hover Effects */
.channel-node {
    cursor: pointer;
    transition: all 0.3s ease;
}

.channel-node:hover .channel-circle {
    filter: brightness(1.3);
}

.channel-node:hover text {
    fill: #fbbf24;
}

/* Connection Lines Animation */
.connection-line {
    animation: pulse-line 2s ease-in-out infinite;
}

@keyframes pulse-line {
    0%, 100% {
        opacity: 0.5;
        stroke-width: 2;
    }
    50% {
        opacity: 1;
        stroke-width: 3;
    }
}

.channel-node:nth-child(2) .connection-line {
    animation-delay: 0.2s;
}

.channel-node:nth-child(3) .connection-line {
    animation-delay: 0.4s;
}

.channel-node:nth-child(4) .connection-line {
    animation-delay: 0.6s;
}

.channel-node:nth-child(5) .connection-line {
    animation-delay: 0.8s;
}

.channel-node:nth-child(6) .connection-line {
    animation-delay: 1s;
}

/* Features Grid */
.omnichannel-features {
    display: grid;
    gap: 24px;
}

.feature-card {
    padding: 24px;
    background: var(--surface-hover);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all var(--transition-base);
}

.feature-card:hover {
    border-color: rgba(245, 158, 11, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.1);
}

.feature-icon {
    margin-bottom: 16px;
}

.feature-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .omnichannel-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .channels-diagram {
        max-width: 500px;
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    .omnichannel-header {
        margin-bottom: 60px;
    }

    .omnichannel-features {
        grid-template-columns: 1fr;
    }

    .channels-diagram {
        max-width: 400px;
    }
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter {
    padding: 80px 0;
}

.newsletter-card {
    position: relative;
    padding: 60px;
    background: var(--surface-hover);
    border: 1px solid var(--border);
    border-radius: 32px;
    overflow: hidden;
}

.newsletter-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.newsletter-gradient-1 {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(99, 102, 241, 0.2) 0%, transparent 60%);
    filter: blur(40px);
}

.newsletter-gradient-2 {
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.15) 0%, transparent 60%);
    filter: blur(40px);
}

.newsletter-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.newsletter-desc {
    font-size: 15px;
    color: var(--text-secondary);
}

.newsletter-form {
    flex-shrink: 0;
}

.newsletter-form .form-group {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    width: 280px;
    padding: 16px 20px;
    background: var(--surface-hover);
    border: 1px solid var(--border);
    border-radius: 14px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    transition: all var(--transition-fast);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: var(--surface);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.contact-info .section-text {
    text-align: left;
    margin-bottom: 40px;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.contact-feature .feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-alpha);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--primary);
    flex-shrink: 0;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feature-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.feature-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a.feature-value:hover {
    color: var(--primary-light);
}

/* Contact Form */
.contact-form {
    background: var(--surface-hover);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    background: var(--surface-hover);
    border: 1px solid var(--border);
    border-radius: 14px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

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

.form-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 16px;
    text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #050508;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(245, 158, 11, 0.2);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-inverse);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 28px;
    max-width: 320px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

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

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

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-credit {
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   ABOUT STORY SECTION (Homepage)
   ============================================ */
.about-story-section {
    background: var(--bg);
    padding: 120px 0;
}

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

.story-content .section-tag {
    display: inline-block;
    margin-bottom: 16px;
}

.story-content .section-title {
    font-size: 48px;
    margin-bottom: 24px;
    text-align: left;
}

.story-content .section-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.about-stats-inline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 40px 0;
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.about-stat-number {
    display: block;
    font-size: 40px;
    font-weight: 800;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.about-stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.story-visual {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 24px;
    overflow: hidden;
    background: var(--surface-hover);
    border: 1px solid var(--border);
}

.story-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .hero-container {
        gap: 60px;
    }

    .floating-card-1 { left: 0; }
    .floating-card-2 { right: -5%; }

    .testimonials-nav .nav-btn-prev { margin-left: -24px; }
    .testimonials-nav .nav-btn-next { margin-right: -24px; }
}

@media (max-width: 1024px) {
    .section {
        padding: var(--section-padding-mobile) 0;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-stats-inline {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--surface-hover);
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        padding: 40px;
        transition: right var(--transition-base);
        border-left: 1px solid var(--border);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-clients {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

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

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

    .process-timeline {
        padding-left: 0;
    }

    .timeline-line {
        display: none;
    }

    .process-step {
        flex-direction: column;
        gap: 20px;
    }

    .step-marker {
        display: flex;
        align-items: center;
        gap: 16px;
        width: auto;
    }

    .step-dot {
        position: static;
        transform: none;
    }

    .about-stats-inline {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 0;
    }

    .story-content .section-title {
        font-size: 36px;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .faq-header {
        position: static;
        text-align: center;
    }

    .faq-header .section-title,
    .faq-header .section-text {
        text-align: center;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form input {
        width: 100%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-info {
        text-align: center;
    }

    .contact-info .section-title,
    .contact-info .section-text {
        text-align: center;
    }

    .contact-features {
        align-items: center;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-desc {
        max-width: 100%;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(36px, 8vw, 48px);
    }

    .section-title {
        font-size: clamp(28px, 6vw, 40px);
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .newsletter-card {
        padding: 40px 24px;
    }

    .newsletter-form .form-group {
        flex-direction: column;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 32px 24px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

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

    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-lg {
        width: 100%;
    }

    .service-card {
        padding: 32px 24px;
    }

    .stat-card {
        padding: 32px 20px;
    }

    .contact-form {
        padding: 32px 24px;
    }
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

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

/* ============================================
   ANIMATIONS & UTILITIES
   ============================================ */
.magnetic {
    transition: transform var(--transition-fast);
}

[data-tilt] {
    transform-style: preserve-3d;
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-out-expo);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
}

.stagger-children.active > * {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s var(--ease-out-expo);
}

.stagger-children.active > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.active > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.active > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children.active > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children.active > *:nth-child(5) { transition-delay: 0.4s; }

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--surface-hover);
    border-top: 1px solid var(--border);
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out-expo);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cookie-text h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    white-space: nowrap;
    padding: 10px 24px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-buttons .btn {
        flex: 1;
    }
}

/* ============================================
   HERO CLIENTS STATS
   ============================================ */
.clients-stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
}

.client-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.client-stat-number {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.client-stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ============================================
   FAQ/TESTIMONIAL QUESTION
   ============================================ */
.testimonial-question {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 12px 0;
}

/* ============================================
   CHECKBOX WRAPPER
   ============================================ */
.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-wrapper input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.checkbox-wrapper .checkbox-label {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.checkbox-wrapper .checkbox-label a {
    color: var(--primary);
    text-decoration: underline;
}

/* ============================================
   BTN OUTLINE
   ============================================ */
.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background: var(--surface-hover);
    border-color: var(--primary);
}

@media (max-width: 768px) {
    .clients-stats {
        flex-direction: column;
        gap: 24px;
    }

    .client-stat-number {
        font-size: 28px;
    }
}

/* ============================================
   ABOUT US SECTION (from communication-sections.css)
   ============================================ */
.about-us {
    background: var(--surface-alt);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
    align-items: start;
}

.about-text {
    position: sticky;
    top: 120px;
}

.about-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.about-description:last-child {
    margin-bottom: 0;
}

.about-values {
    display: grid;
    gap: 24px;
}

.value-card {
    padding: 32px;
    background: var(--surface-hover);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all var(--transition-base);
}

.value-card:hover {
    border-color: rgba(245, 158, 11, 0.3);
    transform: translateX(8px);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.1);
}

.value-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.value-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding: 60px;
    background: var(--surface-hover);
    border: 1px solid var(--border);
    border-radius: 24px;
}

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

.stat-value {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

/* ============================================
   SECTION HEADER CENTER (from communication-sections.css)
   ============================================ */
.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

/* ============================================
   MARKETING PROPOSITION SECTION (from communication-sections.css)
   ============================================ */
.marketing-proposition {
    background: var(--surface);
}

.proposition-cta {
    margin-top: 40px;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 18px;
}

/* Value Props Grid */
.value-props-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 80px;
}

.value-prop-card {
    padding: 32px;
    background: var(--surface-hover);
    border: 1px solid var(--border);
    border-radius: 20px;
    text-align: center;
    transition: all var(--transition-base);
    opacity: 1;
}

.value-prop-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.15);
}

.value-prop-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.value-prop-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================
   TOGGLE SWITCH (from communication-sections.css)
   ============================================ */
.comparison-toggle {
    position: relative;
    display: inline-flex;
    margin: 0 auto 60px;
    padding: 6px;
    background: var(--surface-hover);
    border: 1px solid var(--border);
    border-radius: 16px;
    gap: 6px;
    left: 50%;
    transform: translateX(-50%);
}

.toggle-option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: transparent;
    border: none;
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: color var(--transition-base);
    z-index: 2;
}

.toggle-option.active {
    color: var(--text-primary);
}

.toggle-icon {
    font-size: 20px;
    transition: transform var(--transition-base);
}

.toggle-option.active .toggle-icon {
    transform: scale(1.2);
}

.toggle-slider {
    position: absolute;
    top: 6px;
    left: 6px;
    width: calc(50% - 6px);
    height: calc(100% - 12px);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(251, 191, 36, 0.1));
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 12px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.toggle-option:last-of-type.active ~ .toggle-slider {
    transform: translateX(calc(100% + 6px));
}

/* ============================================
   COMPARISON CONTAINER (from communication-sections.css)
   ============================================ */
.comparison-container {
    position: relative;
    min-height: 600px;
}

.comparison-state {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.comparison-state.active {
    opacity: 1;
    pointer-events: auto;
}

/* Visual States */
.state-visual {
    position: relative;
    height: 500px;
    background: var(--surface-hover);
    border: 2px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    opacity: 1;
}

/* Before (Chaos) */
.chaos-visual {
    border-color: rgba(239, 68, 68, 0.3);
}

.mess-item {
    position: absolute;
    left: var(--x);
    top: var(--y);
    transform: rotate(var(--rotation));
    padding: 12px 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    animation: shake 2s ease-in-out infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(var(--rotation)) translateX(0); }
    25% { transform: rotate(var(--rotation)) translateX(-5px); }
    75% { transform: rotate(var(--rotation)) translateX(5px); }
}

.mess-icon {
    font-size: 24px;
    margin-bottom: 4px;
}

.mess-text {
    font-size: 11px;
    color: var(--text-secondary);
    white-space: nowrap;
}

.chaos-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* After (Organized) */
.organized-visual {
    border-color: rgba(16, 185, 129, 0.3);
}

.org-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.org-icon {
    font-size: 48px;
    margin-bottom: 8px;
}

.org-label {
    font-size: 16px;
    font-weight: 700;
    color: #10b981;
}

.org-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    transform-origin: center;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-150px);
}

.org-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 100px;
    background: linear-gradient(to bottom, #10b981, transparent);
    opacity: 0.3;
}

.org-text {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(calc(var(--angle) * -1));
    font-size: 28px;
    animation: orbit 10s linear infinite;
}

@keyframes orbit {
    0% { transform: translateX(-50%) rotate(calc(var(--angle) * -1)); }
    100% { transform: translateX(-50%) rotate(calc(var(--angle) * -1 + 360deg)); }
}

/* State Content */
.state-content {
    opacity: 1;
}

.state-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 32px;
}

.state-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.state-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    padding: 16px;
    background: var(--surface-hover);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all var(--transition-base);
}

.state-list li:hover {
    border-color: rgba(245, 158, 11, 0.3);
    transform: translateX(4px);
}

.state-list svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.state-list span {
    flex: 1;
}

/* ============================================
   CUSTOMER JOURNEY SECTION (from communication-sections.css)
   ============================================ */
.customer-journey {
    background: var(--surface-alt);
}

.journey-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 60px 0;
}

.journey-step {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
}

.journey-step:last-child {
    margin-bottom: 0;
}

.journey-step:nth-child(even) .step-content {
    order: -1;
}

.journey-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.journey-note {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.journey-note strong {
    color: var(--text-primary);
}

/* ============================================
   MODERN ABOUT SECTION (from modern-sections.css)
   ============================================ */
.about-modern {
    background: var(--surface-alt);
}

/* Stats Hero */
.stats-hero {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 120px;
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
}

.stat-hero-item {
    text-align: center;
    opacity: 1;
}

.stat-hero-number {
    font-size: 72px;
    font-weight: 800;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-hero-plus {
    display: inline;
    font-size: 48px;
    color: #f59e0b;
    margin-left: 4px;
}

.stat-hero-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-top: 12px;
}

/* Split Layout */
.about-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-split-text {
    position: sticky;
    top: 120px;
}

.about-intro {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

/* Principles */
.about-principles {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
}

.principle-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.principle-marker {
    width: 12px;
    height: 12px;
    background: #f59e0b;
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

.principle-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.principle-content p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
}

/* Visual Cards */
.about-split-visual {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.visual-card {
    padding: 32px;
    background: var(--surface-hover);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all var(--transition-base);
    opacity: 1;
}

.visual-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.15);
}

.visual-metric {
    display: flex;
    align-items: center;
    gap: 20px;
}

.metric-icon {
    font-size: 48px;
}

.metric-value {
    font-size: 36px;
    font-weight: 800;
    color: #f59e0b;
    line-height: 1;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ============================================
   PAGE HEADER (from portfolio.css)
   ============================================ */
.page-header {
    padding-top: 140px;
    padding-bottom: 60px;
    background: var(--bg);
    text-align: center;
}

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

.page-title {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.page-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   PORTFOLIO SECTION (from portfolio.css)
   ============================================ */
.portfolio-full {
    background: var(--surface);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.portfolio-card {
    display: block;
    text-decoration: none;
    background: var(--surface-hover);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    transition: all var(--transition-base);
    opacity: 1;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.15);
}

.portfolio-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--bg);
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
}

.portfolio-placeholder svg {
    width: 100%;
    height: 100%;
    display: block;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 15, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 32px;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-view {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary);
    color: var(--text-inverse);
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    transform: translateY(20px);
    transition: transform var(--transition-base);
}

.portfolio-card:hover .portfolio-view {
    transform: translateY(0);
}

.portfolio-content {
    padding: 32px;
}

.portfolio-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.portfolio-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 8px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.portfolio-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.portfolio-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

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

.portfolio-stat .stat-value {
    display: block;
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.portfolio-stat .stat-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

/* ============================================
   PROJECT DETAIL (from portfolio.css)
   ============================================ */
.project-header {
    padding-top: 120px;
    padding-bottom: 60px;
    background: var(--bg);
}

.project-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    font-size: 14px;
    color: var(--text-secondary);
}

.project-breadcrumb a {
    color: var(--primary);
    text-decoration: none;
}

.project-breadcrumb a:hover {
    text-decoration: underline;
}

.project-header-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: start;
}

.project-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.project-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

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

.project-meta-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.meta-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.meta-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.project-header-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.header-stat-card {
    padding: 24px;
    background: var(--surface-hover);
    border: 1px solid var(--border);
    border-radius: 16px;
    text-align: center;
}

.stat-value-large {
    display: block;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label-large {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-image-section {
    background: var(--surface);
}

.project-image-large {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.project-content {
    background: var(--surface-alt);
}

.project-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
}

.project-main {
    max-width: 800px;
}

.content-block {
    margin-bottom: 60px;
}

.content-block h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.content-block h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    margin-top: 32px;
}

.content-block p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.content-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.content-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.content-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.result-card {
    padding: 32px;
    background: var(--surface-hover);
    border: 1px solid var(--border);
    border-radius: 16px;
    text-align: center;
}

.result-number {
    display: block;
    font-size: 40px;
    font-weight: 800;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.result-label {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
}

.project-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-card {
    padding: 32px;
    background: var(--surface-hover);
    border: 1px solid var(--border);
    border-radius: 20px;
    margin-bottom: 24px;
}

.sidebar-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.tech-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    color: var(--text-secondary);
}

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

/* ============================================
   CTA SECTION (from portfolio.css)
   ============================================ */
.cta-section {
    background: var(--surface-alt);
}

.cta-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 60px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 32px;
    text-align: center;
}

.cta-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.cta-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   ABOUT PAGE - HERO SECTION (from about.css)
   ============================================ */
.about-hero {
    padding-top: 140px;
    padding-bottom: 80px;
    background: var(--bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: clamp(48px, 7vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.about-hero .hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
}

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

.about-stat-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.about-stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   STORY SECTION (from about.css)
   ============================================ */
.about-story {
    background: var(--surface);
    padding: 120px 0;
}

/* ============================================
   VALUES SECTION (from about.css)
   ============================================ */
.about-values {
    background: var(--bg);
    padding: 120px 0;
}

.values-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.values-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.values-header p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

/* ============================================
   TEAM SECTION (from about.css)
   ============================================ */
.about-team {
    background: var(--surface-alt);
    padding: 120px 0;
}

.team-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.team-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.team-header p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.team-member {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: var(--surface-hover);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all var(--transition-base);
}

.team-member:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 158, 11, 0.3);
}

.member-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    flex-shrink: 0;
}

.member-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.member-role {
    display: block;
    font-size: 14px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.member-info p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ============================================
   APPROACH SECTION (from about.css)
   ============================================ */
.about-approach {
    background: var(--surface);
    padding: 120px 0;
}

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

.approach-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.approach-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.approach-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    text-align: left;
    margin-top: 60px;
}

.approach-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--surface-hover);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.feature-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================
   PULSE ANIMATIONS (from pulse-animations.css)
   ============================================ */
/* Subtle Pulse */
@keyframes pulse-subtle {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

/* Pulse Glow */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(245, 158, 11, 0.6);
    }
}

/* Pulse Opacity */
@keyframes pulse-opacity {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Pulse Border */
@keyframes pulse-border {
    0%, 100% {
        border-color: rgba(245, 158, 11, 0.3);
    }
    50% {
        border-color: rgba(245, 158, 11, 0.7);
    }
}

/* Apply to Elements */
.stat strong,
.hero-stats .stat strong,
.trust-badge strong {
    animation: pulse-subtle 3s ease-in-out infinite;
}

/* Badges */
.hero-badge,
.section-label,
.visual-badge,
.case-tag {
    animation: pulse-glow 4s ease-in-out infinite;
}

/* CTA Buttons */
.btn-primary:not(:hover) {
    animation: pulse-subtle 2s ease-in-out infinite;
}

/* Cards on hover get pulse */
.problem-card:hover,
.solution-item:hover,
.faq-item:hover {
    animation: pulse-subtle 0.6s ease-in-out 1;
}

/* Step numbers pulse */
.step-number {
    animation: pulse-glow 3s ease-in-out infinite;
}

/* Logo pulse on hover */
.nav-logo:hover .logo-icon,
.footer-brand:hover svg {
    animation: pulse 0.5s ease-in-out 1;
}

/* Benefit icons pulse */
.benefit-item svg {
    animation: pulse-subtle 2.5s ease-in-out infinite;
}

/* Card icons */
.card-icon,
.problem-icon {
    animation: pulse-subtle 3s ease-in-out infinite;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   SECTION LABEL (unified)
   ============================================ */
.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(245, 158, 11, 0.1);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.section-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   HERO DESCRIPTION (unified)
   ============================================ */
.hero-description {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
}

/* ============================================
   CARD CLASS (unified)
   ============================================ */
.card {
    padding: 32px;
    background: var(--surface-hover);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all var(--transition-base);
}

.card:hover {
    border-color: rgba(245, 158, 11, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.1);
}

.card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================
   BTN SECONDARY (unified)
   ============================================ */
.btn-secondary {
    background: var(--surface-hover);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--surface);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* ============================================
   BTN LARGE (unified)
   ============================================ */
.btn-large {
    padding: 18px 36px;
    font-size: 16px;
    border-radius: 16px;
}

/* ============================================
   GRADIENT TEXT (unified)
   ============================================ */
.gradient-text {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   RESPONSIVE - ADDITIONAL (from communication/modern/portfolio/about)
   ============================================ */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-text {
        position: static;
    }

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

    .comparison-state {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .comparison-container {
        min-height: 800px;
    }

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

    .stats-hero {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 80px;
    }

    .about-split {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-split-text {
        position: static;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .approach-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .journey-step {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .journey-step:nth-child(even) .step-content {
        order: 0;
    }

    .state-visual {
        height: 350px;
    }

    .toggle-option {
        padding: 12px 20px;
        font-size: 14px;
    }

    .toggle-icon {
        font-size: 18px;
    }

    .comparison-container {
        min-height: 900px;
    }

    .state-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .state-list li {
        font-size: 14px;
        padding: 12px;
    }

    .value-props-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .value-prop-card {
        padding: 24px;
    }

    .value-prop-card h4 {
        font-size: 18px;
    }

    .value-prop-card p {
        font-size: 14px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        padding: 32px;
    }

    .stat-value {
        font-size: 36px;
    }

    .stats-hero {
        grid-template-columns: 1fr;
        padding: 60px 0;
        margin-bottom: 60px;
    }

    .stat-hero-number {
        font-size: 56px;
    }

    .about-intro {
        font-size: 16px;
    }

    .principle-content h4 {
        font-size: 18px;
    }

    .metric-value {
        font-size: 28px;
    }

    .page-header {
        padding-top: 100px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .portfolio-content {
        padding: 24px;
    }

    .portfolio-title {
        font-size: 20px;
    }

    .portfolio-stat .stat-value {
        font-size: 24px;
    }

    .cta-card {
        padding: 60px 32px;
    }

    .about-hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .about-hero h1 {
        font-size: 40px;
    }

    .about-story,
    .about-values,
    .about-team,
    .about-approach {
        padding: 80px 0;
    }

    .values-header,
    .team-header {
        margin-bottom: 60px;
    }

    .team-member {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .member-avatar {
        width: 100px;
        height: 100px;
    }
}
