:root {
            --white: #FFFFFF;
            --cream: #FDFCFB;
            --cream-dark: #F8F6F3;
            --gray-50: #F9FAFB;
            --gray-100: #F3F4F6;
            --gray-200: #E5E7EB;
            --gray-300: #D1D5DB;
            --gray-400: #9CA3AF;
            --gray-500: #6B7280;
            --gray-600: #4B5563;
            --gray-700: #374151;
            --gray-800: #1F2937;
            --gray-900: #111827;
            --gray-950: #0a0d12;
            
            --bronze-900: #312E81;
            --bronze-800: #3730A3;
            --bronze-700: #4F46E5;
            --bronze-600: #6366F1;
            --bronze-500: #A37B4C;
            --bronze-400: #A5B4FC;
            --bronze-300: #D4B483;
            
            --emerald-50: #ECFDF5;
            --emerald-100: #D1FAE5;
            --emerald-200: #A7F3D0;
            --emerald-300: #6EE7B7;
            --emerald-400: #34D399;
            --emerald-500: #10B981;
            --emerald-600: #059669;
            --emerald-700: #047857;
            --emerald-800: #065F46;
            
            --red-500: #EF4444;
            --amber-500: #F59E0B;
            --blue-500: #3B82F6;
            
            --dark-bg: #1a1f2e;
            --dark-bg-deep: #141820;
            --dark-card: #1e2433;
            
            --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.6;
            color: var(--gray-800);
            background: var(--white);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            background: none;
        }

        .container { max-width: 1600px; margin: 0 auto; padding: 0 72px; }

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

        /* ===== HEADER ===== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 16px 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
        }

        .header.scrolled {
            padding: 12px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 22px;
            font-weight: 600;
            color: var(--gray-900);
        }

        .logo-mark {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--bronze-700), var(--bronze-400));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(99,102,241, 0.3);
        }

        .logo-mark svg {
            width: 20px;
            height: 20px;
            color: white;
        }

        .logo sup {
            font-size: 11px;
            font-weight: 500;
            color: var(--bronze-500);
            margin-left: 2px;
        }

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

        .nav-link {
            padding: 10px 16px;
            font-size: 14px;
            font-weight: 500;
            color: var(--gray-600);
            border-radius: 8px;
            transition: all 0.2s;
        }

        .nav-link:hover {
            color: var(--gray-900);
            background: rgba(0, 0, 0, 0.04);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 24px;
            font-size: 14px;
            font-weight: 600;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--emerald-600), var(--emerald-700));
            color: white;
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
        }

        .btn-secondary {
            background: var(--white);
            color: var(--gray-800);
            border: 1px solid var(--gray-200);
        }

        .btn-secondary:hover {
            background: var(--gray-50);
            border-color: var(--gray-300);
        }

        .btn-ghost {
            color: var(--gray-600);
            padding: 10px 16px;
        }

        .btn-ghost:hover {
            color: var(--gray-900);
        }

        .btn-bronze {
            background: linear-gradient(135deg, var(--bronze-700), var(--bronze-800));
            color: white;
            box-shadow: 0 4px 12px rgba(99,102,241, 0.3);
        }

        .btn-bronze:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(99,102,241, 0.4);
        }

        /* ===== HERO SECTION ===== */
        .hero {
            padding: 60px 0 80px;
            background: linear-gradient(180deg, var(--white) 0%, var(--emerald-50) 50%, var(--cream) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at 20% 30%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
                        radial-gradient(ellipse at 80% 70%, rgba(99,102,241, 0.06) 0%, transparent 50%);
            pointer-events: none;
        }

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

        .hero-content {
            max-width: 540px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
            border: 1px solid rgba(16, 185, 129, 0.2);
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            color: var(--emerald-700);
            margin-bottom: 24px;
        }

        .hero-badge-icon {
            width: 20px;
            height: 20px;
            background: linear-gradient(135deg, var(--emerald-500), var(--emerald-700));
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-badge-icon svg {
            width: 12px;
            height: 12px;
            color: white;
        }

        .hero-title {
            font-size: 50px;
            font-weight: 700;
            line-height: 1.1;
            color: var(--gray-900);
            margin-bottom: 24px;
            letter-spacing: -0.02em;
        }

        .hero-title span {
            background: linear-gradient(135deg, var(--emerald-500), var(--emerald-700));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-description {
            font-size: 18px;
            line-height: 1.7;
            color: var(--gray-600);
            margin-bottom: 40px;
        }

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

        .hero-stats {
            display: flex;
            gap: 40px;
        }

        .hero-stat {
            text-align: left;
        }

        .hero-stat-value {
            font-size: 32px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 4px;
        }

        .hero-stat-value span {
            color: var(--emerald-600);
        }

        .hero-stat-label {
            font-size: 14px;
            color: var(--gray-500);
        }

        /* Hero Mockup - Quality Dashboard */
        .hero-mockup {
            position: relative;
        }

        .dashboard-container {
            background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-bg-deep) 100%);
            border-radius: 20px;
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25),
                        0 0 0 1px rgba(255, 255, 255, 0.08) inset;
            overflow: hidden;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .dashboard-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 24px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.02);
        }

        .dashboard-header-left {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .dashboard-title {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 600;
            color: white;
        }

        .dashboard-title svg {
            width: 18px;
            height: 18px;
            color: var(--emerald-400);
        }

        .dashboard-badge {
            padding: 4px 10px;
            background: rgba(16, 185, 129, 0.2);
            border-radius: 6px;
            font-size: 11px;
            font-weight: 600;
            color: var(--emerald-400);
        }

        .dashboard-tabs {
            display: flex;
            gap: 4px;
        }

        .dashboard-tab {
            padding: 6px 12px;
            font-size: 12px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.5);
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .dashboard-tab.active {
            background: rgba(255, 255, 255, 0.1);
            color: white;
        }

        .dashboard-dots {
            display: flex;
            gap: 8px;
        }

        .dashboard-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .dashboard-dot.red { background: #EF4444; }
        .dashboard-dot.yellow { background: #F59E0B; }
        .dashboard-dot.green { background: #10B981; }

        .dashboard-body {
            padding: 24px;
        }

        /* Score Overview */
        .score-overview {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin-bottom: 24px;
        }

        .score-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 16px;
            text-align: center;
        }

        .score-card-value {
            font-size: 28px;
            font-weight: 700;
            color: white;
            margin-bottom: 4px;
        }

        .score-card-value.green { color: var(--emerald-400); }
        .score-card-value.amber { color: var(--amber-500); }
        .score-card-value.blue { color: #60A5FA; }

        .score-card-label {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .score-card-trend {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 11px;
            margin-top: 8px;
            padding: 2px 8px;
            border-radius: 10px;
        }

        .score-card-trend.up {
            background: rgba(16, 185, 129, 0.2);
            color: var(--emerald-400);
        }

        .score-card-trend.down {
            background: rgba(239, 68, 68, 0.2);
            color: #F87171;
        }

        /* Call Review */
        .call-review {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 14px;
            overflow: hidden;
        }

        .call-review-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .call-review-title {
            font-size: 13px;
            font-weight: 600;
            color: white;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .call-review-title svg {
            width: 16px;
            height: 16px;
            color: var(--emerald-400);
        }

        .call-review-agent {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .agent-avatar {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, var(--emerald-500), var(--emerald-700));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
            color: white;
        }

        .agent-info {
            text-align: right;
        }

        .agent-name {
            font-size: 13px;
            font-weight: 600;
            color: white;
        }

        .agent-role {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.5);
        }

        .call-review-body {
            padding: 20px;
        }

        /* Score Breakdown */
        .score-breakdown {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-bottom: 20px;
        }

        .score-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .score-item-label {
            width: 120px;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.7);
        }

        .score-item-bar {
            flex: 1;
            height: 8px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            overflow: hidden;
        }

        .score-item-fill {
            height: 100%;
            border-radius: 4px;
            transition: width 1s ease;
        }

        .score-item-fill.excellent {
            background: linear-gradient(90deg, var(--emerald-500), var(--emerald-400));
        }

        .score-item-fill.good {
            background: linear-gradient(90deg, #60A5FA, #93C5FD);
        }

        .score-item-fill.warning {
            background: linear-gradient(90deg, var(--amber-500), #FBBF24);
        }

        .score-item-value {
            width: 40px;
            font-size: 13px;
            font-weight: 600;
            color: white;
            text-align: right;
        }

        /* Coaching Tips */
        .coaching-section {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 20px;
        }

        .coaching-header {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 14px;
        }

        .coaching-icon {
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(251, 191, 36, 0.1));
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .coaching-icon svg {
            width: 14px;
            height: 14px;
            color: #FBBF24;
        }

        .coaching-title {
            font-size: 12px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.7);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .coaching-tips {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .coaching-tip {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 12px;
            background: rgba(251, 191, 36, 0.08);
            border: 1px solid rgba(251, 191, 36, 0.2);
            border-radius: 10px;
        }

        .tip-icon {
            width: 20px;
            height: 20px;
            background: rgba(251, 191, 36, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .tip-icon svg {
            width: 10px;
            height: 10px;
            color: #FBBF24;
        }

        .tip-content {
            flex: 1;
        }

        .tip-text {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.5;
        }

        .tip-timestamp {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.4);
            margin-top: 4px;
        }

        /* Floating Elements */
        .floating-card {
            position: absolute;
            background: var(--white);
            border-radius: 12px;
            padding: 16px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            animation: floatCard 5s ease-in-out infinite;
        }

        @keyframes floatCard {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        .floating-card-1 {
            top: 20px;
            right: -60px;
            animation-delay: 0.5s;
        }

        .floating-card-2 {
            bottom: 40px;
            left: -40px;
            animation-delay: 1s;
        }

        .floating-score {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .floating-score-ring {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: conic-gradient(var(--emerald-500) 0% 92%, var(--gray-200) 92% 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .floating-score-inner {
            width: 38px;
            height: 38px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
            color: var(--emerald-600);
        }

        .floating-score-text h4 {
            font-size: 13px;
            font-weight: 600;
            color: var(--gray-900);
        }

        .floating-score-text p {
            font-size: 11px;
            color: var(--gray-500);
        }

        .floating-badge {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .floating-badge-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--emerald-100), var(--emerald-50));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .floating-badge-icon svg {
            width: 18px;
            height: 18px;
            color: var(--emerald-600);
        }

        .floating-badge-text h4 {
            font-size: 13px;
            font-weight: 600;
            color: var(--gray-900);
        }

        .floating-badge-text p {
            font-size: 11px;
            color: var(--emerald-600);
        }

        /* ===== METRICS SECTION ===== */
        .metrics {
            padding: 100px 0;
            background: var(--white);
        }

        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 32px;
        }

        .metric-card {
            text-align: center;
            padding: 32px 24px;
            background: var(--gray-50);
            border-radius: 16px;
            border: 1px solid var(--gray-200);
            transition: all 0.3s ease;
        }

        .metric-card:hover {
            border-color: var(--emerald-300);
            box-shadow: 0 12px 32px rgba(16, 185, 129, 0.1);
            transform: translateY(-4px);
        }

        .metric-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--emerald-100), var(--emerald-50));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
        }

        .metric-icon svg {
            width: 28px;
            height: 28px;
            color: var(--emerald-600);
        }

        .metric-value {
            font-size: 36px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 4px;
        }

        .metric-label {
            font-size: 14px;
            color: var(--gray-500);
        }

        /* ===== FEATURES SECTION ===== */
        .features {
            padding: 120px 0;
            background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
        }

        .section-header {
            text-align: center;
            max-width: 640px;
            margin: 0 auto 64px;
        }

        .section-label {
            display: inline-block;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--emerald-600);
            margin-bottom: 16px;
        }

        .section-title {
            font-size: 40px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .section-description {
            font-size: 18px;
            color: var(--gray-500);
            line-height: 1.7;
        }

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

        .feature-card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 20px;
            padding: 36px;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            border-color: rgba(16, 185, 129, 0.3);
            box-shadow: 0 16px 48px rgba(16, 185, 129, 0.1);
            transform: translateY(-4px);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .feature-icon svg {
            width: 30px;
            height: 30px;
            color: var(--emerald-600);
        }

        .feature-title {
            font-size: 20px;
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 12px;
        }

        .feature-description {
            font-size: 15px;
            color: var(--gray-500);
            line-height: 1.7;
        }

        /* ===== DASHBOARD SHOWCASE ===== */
        .dashboard-showcase {
            padding: 120px 0;
            background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-bg-deep) 100%);
            overflow: hidden;
        }

        .dashboard-showcase .section-label {
            color: var(--emerald-400);
        }

        .dashboard-showcase .section-title {
            color: white;
        }

        .dashboard-showcase .section-description {
            color: rgba(255, 255, 255, 0.6);
        }

        .showcase-content {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 80px;
            align-items: center;
            margin-top: 64px;
        }

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

        .showcase-feature {
            display: flex;
            gap: 20px;
            padding: 24px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .showcase-feature:hover,
        .showcase-feature.active {
            background: rgba(16, 185, 129, 0.1);
            border-color: rgba(16, 185, 129, 0.3);
        }

        .showcase-feature-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--emerald-500), var(--emerald-700));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .showcase-feature-icon svg {
            width: 24px;
            height: 24px;
            color: white;
        }

        .showcase-feature-content h4 {
            font-size: 17px;
            font-weight: 600;
            color: white;
            margin-bottom: 6px;
        }

        .showcase-feature-content p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
        }

        .showcase-mockup {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 24px;
        }

        /* Team Performance Table */
        .team-table {
            width: 100%;
        }

        .team-table-header {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            gap: 16px;
            padding: 12px 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 8px;
        }

        .team-table-header span {
            font-size: 11px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .team-row {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            gap: 16px;
            padding: 14px 16px;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 10px;
            margin-bottom: 8px;
            align-items: center;
            transition: all 0.2s;
        }

        .team-row:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        .team-agent {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .team-avatar {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
            color: white;
        }

        .team-agent-info h5 {
            font-size: 14px;
            font-weight: 600;
            color: white;
        }

        .team-agent-info p {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.5);
        }

        .team-score {
            font-size: 15px;
            font-weight: 700;
        }

        .team-score.excellent { color: var(--emerald-400); }
        .team-score.good { color: #60A5FA; }
        .team-score.warning { color: var(--amber-500); }

        .team-calls {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
        }

        .team-trend {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 13px;
        }

        .team-trend.up { color: var(--emerald-400); }
        .team-trend.down { color: #F87171; }

        .team-trend svg {
            width: 14px;
            height: 14px;
        }

        .team-badge {
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 600;
        }

        .team-badge.top { background: rgba(16, 185, 129, 0.2); color: var(--emerald-400); }
        .team-badge.improving { background: rgba(96, 165, 250, 0.2); color: #60A5FA; }
        .team-badge.coaching { background: rgba(251, 191, 36, 0.2); color: #FBBF24; }

        /* ===== HOW IT WORKS ===== */
        .how-it-works {
            padding: 120px 0;
            background: var(--white);
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            margin-top: 64px;
        }

        .step {
            text-align: center;
            position: relative;
        }

        .step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 40px;
            right: -16px;
            width: 32px;
            height: 2px;
            background: linear-gradient(90deg, var(--emerald-500), transparent);
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--emerald-500), var(--emerald-700));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: 700;
            color: white;
            margin: 0 auto 24px;
            box-shadow: 0 12px 32px rgba(16, 185, 129, 0.3);
        }

        .step-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 12px;
        }

        .step-description {
            font-size: 14px;
            color: var(--gray-500);
            line-height: 1.6;
        }

        /* ===== USE CASES ===== */
        .use-cases {
            padding: 120px 0;
            background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
        }

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

        .use-case-card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 20px;
            padding: 40px;
            transition: all 0.3s ease;
        }

        .use-case-card:hover {
            border-color: rgba(16, 185, 129, 0.3);
            box-shadow: 0 16px 48px rgba(16, 185, 129, 0.1);
            transform: translateY(-4px);
        }

        .use-case-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .use-case-icon svg {
            width: 32px;
            height: 32px;
            color: var(--emerald-600);
        }

        .use-case-title {
            font-size: 22px;
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 12px;
        }

        .use-case-description {
            font-size: 15px;
            color: var(--gray-500);
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .use-case-benefits {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .use-case-benefit {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: var(--gray-700);
        }

        .use-case-benefit svg {
            width: 18px;
            height: 18px;
            color: var(--emerald-500);
        }

        /* ===== CTA ===== */
        .cta {
            padding: 120px 0;
            background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-bg-deep) 100%);
            text-align: center;
        }

        .cta-title {
            font-size: 44px;
            font-weight: 700;
            color: white;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .cta-description {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 40px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

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

        .cta .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
            color: white;
        }

        .cta .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
        }

        /* ===== FOOTER ===== */
        .footer {
            padding: 80px 0 40px;
            background: var(--gray-900);
        }

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

        .footer-brand p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.7;
            margin-top: 16px;
            max-width: 280px;
        }

        .footer-col h4 {
            font-size: 14px;
            font-weight: 600;
            color: white;
            margin-bottom: 20px;
        }

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

        .footer-link {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
            transition: color 0.2s;
        }

        .footer-link:hover {
            color: white;
        }

        .footer-bottom {
            padding-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-copyright {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.4);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1200px) {
            .metrics-grid {
                grid-template-columns: repeat(3, 1fr);
            }

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

        @media (max-width: 1024px) {
            .hero-inner {
                grid-template-columns: 1fr;
                gap: 60px;
            }

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

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

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

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

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

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

            .step:not(:last-child)::after {
                display: none;
            }

            .use-cases-grid {
                grid-template-columns: 1fr;
            }

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

            .floating-card {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .nav {
                display: none;
            }

            .hero {
                padding: 48px 0 80px;
            }

            .hero-title {
                font-size: 36px;
            }

            .section-title {
                font-size: 32px;
            }

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

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

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

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

            .team-table-header,
            .team-row {
                grid-template-columns: 2fr 1fr 1fr;
            }

            .team-table-header span:nth-child(4),
            .team-table-header span:nth-child(5),
            .team-row > *:nth-child(4),
            .team-row > *:nth-child(5) {
                display: none;
            }
        }
    
/* ── Nav wrapping fix for long translations ── */
#header .nav-link,
#header .nav-item > a {
  white-space: nowrap;
}
#header .nav {
  font-size: clamp(12px, 1.1vw, 15px);
  flex-wrap: nowrap;
}
#header .header-inner {
  flex-wrap: nowrap;
  align-items: center;
}
.header-actions {
  flex-shrink: 0;
  white-space: nowrap;
}

/* ── Hero badge overflow fix for long translations ── */
.hero-badge {
  white-space: nowrap;
  width: auto;
  max-width: 100%;
}
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
