/* ============================================
   ZENTER - Complete Shared Page Styles
   Professional UI for all public pages
   ============================================ */

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --primary: #4F46E5;
    --primary-light: #818CF8;
    --primary-lighter: #C7D2FE;
    --primary-dark: #3730A3;
    --primary-darker: #312E81;
    --primary-bg: #EEF2FF;
    --primary-bg-hover: #E0E7FF;

    /* Semantic Colors */
    --success: #059669;
    --success-light: #34D399;
    --success-bg: #ECFDF5;
    --warning: #D97706;
    --warning-light: #FBBF24;
    --warning-bg: #FFFBEB;
    --danger: #DC2626;
    --danger-light: #F87171;
    --danger-bg: #FEF2F2;
    --info: #0284C7;
    --info-light: #38BDF8;
    --info-bg: #F0F9FF;

    /* Neutral Colors */
    --white: #FFFFFF;
    --gray-25: #FCFCFD;
    --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: #030712;

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Manrope', 'Inter', sans-serif;
    --font-mono: 'Fira Code', 'JetBrains Mono', 'Courier New', monospace;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-primary: 0 4px 14px rgba(79, 70, 229, 0.4);
    --shadow-primary-lg: 0 10px 30px rgba(79, 70, 229, 0.3);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.2s ease;
    --transition-slow: 0.3s ease;
    --transition-spring: 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    /* Layout */
    --max-width: 1200px;
    --navbar-height: 72px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img, video {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
}

::selection {
    background: var(--primary-lighter);
    color: var(--primary-darker);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-slow);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar-inner {
    width: 100%;
    max-width: var(--max-width);
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.nav-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 24px;
    color: var(--gray-900);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: opacity var(--transition-fast);
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    box-shadow: var(--shadow-primary);
    transition: transform var(--transition-spring);
}

.nav-logo:hover .nav-logo-icon {
    transform: rotate(-8deg) scale(1.05);
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links > li > a,
.nav-dropdown-trigger {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    white-space: nowrap;
}

.nav-links > li > a:hover,
.nav-dropdown-trigger:hover {
    color: var(--gray-900);
    background: var(--gray-100);
}

.nav-links > li > a.active {
    color: var(--primary);
    background: var(--primary-bg);
    font-weight: 600;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger svg {
    width: 14px;
    height: 14px;
    stroke-width: 2.5;
    transition: transform var(--transition-base);
    flex-shrink: 0;
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
    transform: rotate(180deg);
}

.nav-dropdown:hover .nav-dropdown-trigger {
    color: var(--gray-900);
    background: var(--gray-100);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 6px;
    min-width: 220px;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    width: 100%;
    height: 8px;
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    transition: all var(--transition-fast);
}

.nav-dropdown-menu a:hover {
    background: var(--primary-bg);
    color: var(--primary);
    transform: translateX(2px);
}

.menu-icon {
    font-size: 18px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.menu-desc {
    font-size: 12px;
    color: var(--gray-400);
    font-weight: 400;
    display: block;
    margin-top: 2px;
}

/* Nav CTA */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-login-btn {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    background: var(--gray-100);
    box-shadow: var(--shadow-primary);
}

.nav-login-btn:hover {
    background: var(--gray-100);
    color: var(--gray-900);
}

.nav-signup-btn {
    padding: 8px 22px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    background: var(--primary);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-primary);
}

.nav-signup-btn:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-primary-lg);
    transform: translateY(-1px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    width: 20px;
    height: 2px;
    background: var(--gray-700);
    border: none;
    cursor: pointer;
    position: relative;
    border-radius: 1px;
    transition: all var(--transition-fast);
}

.mobile-menu-btn::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 1px;
    transition: all var(--transition-fast);
}

.mobile-menu-btn::after {
    content: '';
    position: absolute;
    top: 7px;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 1px;
    transition: all var(--transition-fast);
}

.mobile-menu-btn:hover {
    background: var(--gray-100);
    border-color: var(--gray-300);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    width: 100%;
    max-height: calc(100vh - var(--navbar-height));
    overflow-y: auto;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 12px 20px 24px;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    animation: slideDown 0.3s var(--transition-spring);
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.mobile-menu.open {
    display: block;
}

.mobile-menu-section {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
}

.mobile-menu-section:last-child {
    border-bottom: none;
}

.mobile-menu-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-400);
    padding: 12px 16px 4px;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.mobile-menu a:hover {
    background: var(--gray-100);
    color: var(--gray-900);
}

.mobile-menu a .menu-icon {
    font-size: 20px;
}

.mobile-cta {
    display: flex;
    gap: 12px;
    padding-top: 16px;
    margin-top: 8px;
}

.mobile-cta a {
    flex: 1;
    text-align: center;
    padding: 12px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 15px;
    justify-content: center;
}

.mobile-cta .m-login {
    background: var(--gray-100);
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
}

.mobile-cta .m-login:hover {
    background: var(--gray-200);
}

.mobile-cta .m-signup {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-primary);
}

.mobile-cta .m-signup:hover {
    background: var(--primary-dark);
}

/* ============================================
   PAGE CONTENT WRAPPER
   ============================================ */
.page-content {
    padding-top: var(--navbar-height);
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, var(--gray-950) 0%, var(--primary-darker) 50%, var(--primary-dark) 100%);
    padding: calc(100px + var(--navbar-height)) var(--space-lg) 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(79, 70, 229, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(129, 140, 248, 0.2) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, var(--white), transparent);
    pointer-events: none;
}

.page-hero > * {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.6s ease 0.1s both;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero p {
    font-size: 19px;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 36px;
    animation: fadeInUp 0.6s ease 0.3s both;
    flex-wrap: wrap;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 96px var(--space-lg);
}

.section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-alt {
    background: var(--gray-50);
}

.section-dark {
    background: var(--gray-900);
    color: white;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    padding: 6px 16px;
    background: var(--primary-bg);
    border-radius: var(--radius-full);
}

.section-title {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-dark .section-title {
    color: white;
}

.section-desc {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-dark .section-desc {
    color: var(--gray-400);
}

/* ============================================
   CARD SYSTEM
   ============================================ */
.card-grid {
    display: grid;
    gap: 24px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-1 { grid-template-columns: 1fr; }

/* Base Card */
.card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
}

.card:hover {
    border-color: var(--primary-lighter);
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    background: var(--primary-bg);
    transition: all var(--transition-slow);
}

.card:hover .card-icon {
    background: var(--primary);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: var(--shadow-primary);
}

.card:hover .card-icon-emoji {
    filter: brightness(0) invert(1);
}

.card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
    line-height: 1.3;
}

.card p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-top: 20px;
    transition: all var(--transition-fast);
    padding: 6px 0;
}

.card-link::after {
    content: '→';
    transition: transform var(--transition-fast);
}

.card-link:hover {
    color: var(--primary-dark);
    gap: 10px;
}

.card-link:hover::after {
    transform: translateX(4px);
}

/* ============================================
   TEAM CARDS
   ============================================ */
.team-card {
    text-align: center;
    padding: 44px 28px;
}

.team-card::before {
    display: none;
}

.team-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 24px;
    transition: all var(--transition-spring);
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.2);
}

.team-card:hover .team-avatar {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(79, 70, 229, 0.35);
}

.team-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
}

.team-role {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    margin-top: 6px;
}

.team-bio {
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 14px;
    line-height: 1.6;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.team-social a {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--gray-500);
    transition: all var(--transition-fast);
}

.team-social a:hover {
    background: var(--primary);
    color: white;
}

/* ============================================
   JOB CARDS
   ============================================ */
.job-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 32px;
    gap: 24px;
}

.job-card::before {
    display: none;
}

.job-card:hover {
    border-color: var(--primary-lighter);
}

.job-info {
    flex: 1;
    min-width: 0;
}

.job-info h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.job-info > p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.5;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
}

.job-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--gray-500);
    background: var(--gray-100);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-weight: 500;
}

.job-apply-btn {
    padding: 10px 28px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: inherit;
    white-space: nowrap;
    box-shadow: var(--shadow-primary);
    flex-shrink: 0;
}

.job-apply-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary-lg);
}

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-card {
    overflow: hidden;
    padding: 0;
}

.blog-card::before {
    top: auto;
    bottom: 0;
}

.blog-image {
    height: 220px;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--gray-100) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.blog-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.05));
}

.blog-card:hover .blog-image {
    transform: scale(1.03);
}

.blog-body {
    padding: 28px;
}

.blog-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    background: var(--primary-bg);
    border-radius: var(--radius-full);
}

.blog-title {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    color: var(--gray-900);
    margin-top: 12px;
    line-height: 1.4;
    transition: color var(--transition-fast);
}

.blog-card:hover .blog-title {
    color: var(--primary);
}

.blog-excerpt {
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 10px;
    line-height: 1.6;
    display: -webkit-box;
    
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-100);
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: 700;
}

.blog-author-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
}

.blog-date {
    font-size: 12px;
    color: var(--gray-400);
    font-weight: 500;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--gray-950);
    color: white;
    position: relative;
}

.stats-bar .stat {
    text-align: center;
    padding: 56px 24px;
    position: relative;
    transition: background var(--transition-slow);
}

.stats-bar .stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.stats-bar .stat:hover {
    background: rgba(255, 255, 255, 0.03);
}

.stats-bar .stat-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, white, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-bar .stat-label {
    font-size: 15px;
    color: var(--gray-400);
    margin-top: 8px;
    font-weight: 500;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--primary-darker) 100%);
    padding: 100px var(--space-lg);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.cta-section > * {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-section p {
    font-size: 19px;
    opacity: 0.85;
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    padding: 16px 36px;
    background: white;
    color: var(--primary);
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 16px;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-xl);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
    background: var(--gray-50);
}

.cta-btn-secondary {
    padding: 16px 36px;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all var(--transition-fast);
    backdrop-filter: blur(10px);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* ============================================
   STATUS INDICATORS
   ============================================ */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
}

.status-operational {
    background: var(--success-bg);
    color: var(--success);
}

.status-degraded {
    background: var(--warning-bg);
    color: var(--warning);
}

.status-down {
    background: var(--danger-bg);
    color: var(--danger);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    animation: statusPulse 2s ease infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

/* Status service row */
.status-service {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 32px;
}

.status-service-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.status-service-icon {
    font-size: 22px;
    width: 44px;
    height: 44px;
    background: var(--gray-100);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-service-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--gray-900);
}

.status-service-detail {
    font-size: 13px;
    color: var(--gray-400);
    margin-top: 2px;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form {
    max-width: 100%;
}

.contact-form .form-group {
    margin-bottom: 22px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: inherit;
    color: var(--gray-800);
    background: var(--white);
    transition: all var(--transition-fast);
    appearance: none;
    -webkit-appearance: none;
}

.contact-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--gray-400);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-submit {
    width: 100%;
    padding: 14px 24px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    font-family: inherit;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary-lg);
}

.contact-submit:active {
    transform: translateY(0);
}

/* Contact info cards */
.contact-info-card {
    padding: 28px;
}

.contact-info-card .card-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
}

.contact-info-card h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.contact-info-card p {
    font-size: 15px;
    color: var(--gray-700);
    font-weight: 500;
}

.contact-info-card .contact-detail {
    font-size: 13px;
    color: var(--gray-400);
    margin-top: 4px;
    font-weight: 400;
}

/* ============================================
   DOCUMENTATION STYLES
   ============================================ */
.doc-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 56px;
    align-items: start;
}

.doc-sidebar {
    position: sticky;
    top: calc(var(--navbar-height) + 32px);
}

.doc-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.doc-nav a {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-500);
    border-left: 2px solid var(--gray-200);
    transition: all var(--transition-fast);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.doc-nav a:hover {
    color: var(--gray-900);
    border-left-color: var(--gray-400);
    background: var(--gray-50);
}

.doc-nav a.active {
    color: var(--primary);
    border-left-color: var(--primary);
    background: var(--primary-bg);
    font-weight: 600;
}

.doc-content {
    min-width: 0;
}

.doc-content h2 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    color: var(--gray-900);
    margin-top: 56px;
    margin-bottom: 16px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
    letter-spacing: -0.01em;
}

.doc-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.doc-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-800);
    margin-top: 32px;
    margin-bottom: 12px;
}

.doc-content p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.doc-content ul, .doc-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.doc-content li {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 8px;
}

/* Code Blocks */
.code-block {
    background: var(--gray-950);
    color: var(--gray-300);
    padding: 24px 28px;
    border-radius: var(--radius);
    font-family: var(--font-mono);
    font-size: 14px;
    line-height: 1.8;
    overflow-x: auto;
    margin: 20px 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.code-block::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 16px;
    display: flex;
    gap: 8px;
    width: 52px;
    height: 12px;
    background: 
        radial-gradient(circle at 6px 6px, #FF5F57 5px, transparent 5px),
        radial-gradient(circle at 26px 6px, #FEBC2E 5px, transparent 5px),
        radial-gradient(circle at 46px 6px, #28C840 5px, transparent 5px);
}

.code-block code {
    display: block;
    padding-top: 20px;
}

.code-block .comment { color: #6B7280; font-style: italic; }
.code-block .keyword { color: var(--primary-light); }
.code-block .string { color: var(--success-light); }
.code-block .function { color: var(--warning-light); }
.code-block .number { color: #F87171; }

/* Inline code */
.doc-content code:not(.code-block code) {
    background: var(--gray-100);
    color: var(--primary);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: var(--font-mono);
    font-weight: 500;
}

/* ============================================
   PRESS & LOGOS
   ============================================ */
.press-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 56px;
    flex-wrap: wrap;
    padding: 40px 0;
}

.press-logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--gray-300);
    transition: all var(--transition-base);
    letter-spacing: -0.01em;
    cursor: default;
}

.press-logo:hover {
    color: var(--gray-600);
    transform: scale(1.05);
}

/* Press release card */
.press-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px;
    gap: 24px;
}

.press-card::before {
    display: none;
}

.press-date {
    font-size: 12px;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--gray-950);
    color: white;
    padding: 80px var(--space-lg) 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

/* Footer Brand */
.footer-brand .footer-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-brand > p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.7;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--gray-400);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Footer Columns */
.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    color: var(--gray-300);
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--gray-500);
    padding: 5px 0;
    transition: all var(--transition-fast);
}

.footer-col a:hover {
    color: white;
    transform: translateX(3px);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    color: var(--gray-600);
}

.footer-bottom-links {
    display: flex;
    gap: 28px;
}

.footer-bottom-links a {
    color: var(--gray-500);
    transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: white;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mt-3xl { margin-top: var(--space-3xl); }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

.max-w-sm { max-width: 400px; }
.max-w-md { max-width: 600px; }
.max-w-lg { max-width: 800px; }
.max-w-xl { max-width: 1000px; }

.mx-auto { margin-left: auto; margin-right: auto; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }
.gap-2xl { gap: var(--space-2xl); }

.hidden { display: none; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .doc-layout {
        grid-template-columns: 200px 1fr;
        gap: 32px;
    }

    .page-hero h1 {
        font-size: 42px;
    }

    .section-title {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .navbar {
        background: white;
        position: fixed;
    }

    .page-content {
        padding-top: var(--navbar-height);
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-cta {
        display: flex;
    }

    .nav-login-btn:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-primary-lg);
        animation: glow 1s ease-in-out infinite alternate;
    }

    @keyframes glow {
        from {
            box-shadow: var(--shadow-primary-lg);
        }
        to {
            box-shadow: 0 0 20px rgba(79, 70, 229, 0.8);
        }
    }

    .fullscreen-section {
        min-height: calc(100vh - var(--navbar-height));
        margin-top: calc(-1 * var(--navbar-height));
    }

    /* Hero */
    .page-hero {
        padding: 600px 20px 64px;
        text-align: left;
    }

    .page-hero h1 {
        font-size: 48px;
        line-height: 1.3;
    }

    .page-hero p {
        font-size: 16px;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .hero-buttons a {
        font-size: 16px;
        padding: 14px 20px;
    }

    .hero-badge {
        font-size: 13px;
        padding: 6px 16px;
    }

    /* Sections */
    .section {
        padding: 64px 20px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-desc {
        font-size: 16px;
    }

    .section-label {
        font-size: 12px;
    }

    /* Grids */
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    /* Stats */
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .stats-bar .stat {
        padding: 36px 20px;
    }

    .stats-bar .stat-number {
        font-size: 36px;
    }

    .stats-bar .stat:not(:last-child)::after {
        display: none;
    }

    /* Cards */
    .card {
        padding: 24px;
    }

    .card-icon {
        width: 52px;
        height: 52px;
        font-size: 24px;
        margin-bottom: 18px;
    }

    .card h3 {
        font-size: 18px;
    }

    /* Job cards */
    .job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 24px;
    }

    .job-apply-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Blog */
    .blog-image {
        height: 180px;
    }

    .blog-body {
        padding: 20px;
    }

    /* CTA */
    .cta-section {
        padding: 72px 20px;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .cta-section p {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        max-width: 320px;
        text-align: center;
        justify-content: center;
    }

    /* Contact */
    .contact-layout {
        grid-template-columns: 1fr !important;
        gap: 48px !important;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    /* Docs */
    .doc-layout {
        grid-template-columns: 1fr;
    }

    .doc-sidebar {
        position: static;
    }

    .doc-nav {
        flex-direction: row;
        overflow-x: auto;
        gap: 4px;
        padding-bottom: 8px;
        border-bottom: 1px solid var(--gray-200);
        margin-bottom: 32px;
    }

    .doc-nav a {
        border-left: none;
        border-bottom: 2px solid transparent;
        border-radius: var(--radius-sm);
        white-space: nowrap;
        padding: 8px 14px;
        font-size: 13px;
    }

    .doc-nav a.active {
        border-left: none;
        border-bottom-color: var(--primary);
    }

    /* Footer */
    .footer {
        padding: 56px 20px 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    /* Press */
    .press-logos {
        gap: 32px;
    }

    .press-logo {
        font-size: 18px;
    }

    .press-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 36px;
    }

    .section-title {
        font-size: 24px;
    }

    .stats-bar {
        grid-template-columns: 1fr;
    }

    .stats-bar .stat {
        padding: 28px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .card {
        padding: 20px;
    }

    .team-avatar {
        width: 90px;
        height: 90px;
        font-size: 40px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ===== IMAGES ===== */
img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    padding: 8px;
    backdrop-filter: blur(10px);
}

img:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-light);
}

/* ===== FULL SCREEN SECTIONS ===== */
.fullscreen-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.fullscreen-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transform: scale(1.05);
    filter: saturate(1.1) contrast(1.1) brightness(0.8);
}

.fullscreen-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(15,23,42,0.9) 0%, rgba(15,23,42,0.6) 50%, rgba(15,23,42,0.3) 100%),
        linear-gradient(180deg, rgba(15,23,42,0.4) 0%, rgba(15,23,42,0.8) 100%);
    z-index: 1;
}

.fullscreen-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    color: white;
    text-align: left;
    margin: 0;
}

.fullscreen-content h1 {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.fullscreen-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* ============================================
   ANIMATIONS & SCROLL EFFECTS
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
    .card,
    .blog-card,
    .team-card,
    .job-card {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInCard 0.5s ease forwards;
    }

    .card:nth-child(1) { animation-delay: 0.1s; }
    .card:nth-child(2) { animation-delay: 0.2s; }
    .card:nth-child(3) { animation-delay: 0.3s; }
    .card:nth-child(4) { animation-delay: 0.4s; }
    .card:nth-child(5) { animation-delay: 0.5s; }
    .card:nth-child(6) { animation-delay: 0.6s; }

    @keyframes fadeInCard {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .navbar,
    .mobile-menu,
    .footer,
    .cta-section {
        display: none;
    }

    .page-content {
        padding-top: 0;
    }

    .page-hero {
        background: white;
        color: black;
        padding: 20px 0;
    }

    .card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}