/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Glacier Light Theme - 冰川浅色主题 */
    --primary-color: #2563EB;
    --secondary-color: #06B6D4;
    --accent-color: #06B6D4;
    --warning-color: #F59E0B;
    
    /* Background Colors - Glacier */
    --dark-bg: #F7F8FB;
    --dark-surface: #FFFFFF;
    --light-surface: #FFFFFF;
    --section-bg: #F7F8FB;
    
    /* Typography Scale - with line heights (scaled 1.5x * 0.87) */
    --text-h1: 42px; --lh-h1: 1.25;
    --text-h2: 31px; --lh-h2: 1.3;
    --text-h3: 23px; --lh-h3: 1.4;
    --text-h4: 21px; --lh-h4: 1.5;
    --text-body: 18px; --lh-body: 1.6;
    --text-caption: 16px; --lh-caption: 1.5;
    
    /* Text Colors - Glacier */
    --text-primary: #0F172A;
    --text-secondary: #64748B;
    --text-tertiary: #94A3B8;
    --text-disabled: #CBD5E1;
    --text-white: #FFFFFF;
    
    /* Border Colors - Glacier */
    --border-primary: #E6EAF2;
    --border-secondary: #F1F5F9;
    --border-light: #F8FAFC;
    
    /* Surface Colors - Glacier */
    --surface-card: #FFFFFF;
    --surface-elevated: #F7F8FB;
    --surface-hover: #F1F5F9;
    
    /* Spacing Scale - 8pt Grid */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-6: 24px;
    --space-8: 32px;
    --space-12: 48px;
    
    /* Card Specific */
    --card-padding-mobile: 20px;
    --card-padding-desktop: 24px;
    --card-gap: 24px;
    --card-radius: 12px;
    
    /* Gradients - Glacier */
    --gradient-primary: linear-gradient(135deg, #2563EB 0%, #06B6D4 100%);
    --gradient-accent: linear-gradient(135deg, #06B6D4 0%, #0EA5E9 100%);
    --gradient-subtle: linear-gradient(135deg, #F7F8FB 0%, #FFFFFF 100%);
    
    /* Shadows - Soft Glacier */
    --shadow-light: 0 1px 3px rgba(15, 23, 42, 0.08);
    --shadow-medium: 0 4px 12px rgba(15, 23, 42, 0.10);
    --shadow-heavy: 0 8px 32px rgba(15, 23, 42, 0.12);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #FFFFFF;
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-secondary);
    box-shadow: var(--shadow-light);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo .logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1.36rem;
    position: relative;
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 20%, #ffffff 100%);
    overflow: hidden;
}

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

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

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

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

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(6, 182, 212, 0.05) 100%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.08) 0%, rgba(37, 99, 235, 0.04) 100%);
    top: 60%;
    right: 15%;
    animation-delay: -7s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06) 0%, rgba(6, 182, 212, 0.03) 100%);
    top: 30%;
    right: 30%;
    animation-delay: -14s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, rgba(37, 99, 235, 0.02) 100%);
    bottom: 20%;
    left: 25%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
    }
    25% {
        transform: translateY(-20px) translateX(10px) scale(1.05);
    }
    50% {
        transform: translateY(15px) translateX(-15px) scale(0.95);
    }
    75% {
        transform: translateY(-10px) translateX(5px) scale(1.02);
    }
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    padding-left: 3rem;
}

.hero-title {
    font-size: 4.57rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: slideInUp 1s ease;
}

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

.hero-subtitle {
    font-size: 1.63rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    animation: slideInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: slideInUp 1s ease 0.4s both;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-heavy);
    animation: glow 2s ease-in-out infinite;
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Hero Carousel Styles */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    animation: slideInRight 1s ease 0.6s both;
}

.grid-item {
    width: 180px;
    height: 160px;
    background: var(--surface-card);
    border-radius: var(--card-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid var(--border-primary);
    transition: all 0.3s ease;
    cursor: pointer;
    gap: 0.5rem;
    box-shadow: var(--shadow-light);
}

.grid-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.grid-item::after {
    content: attr(data-tech);
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.grid-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

/* Finance Flow Styles */
.finance-flow {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    max-width: 1000px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 1rem 0;
}

.flow-stage {
    text-align: center;
    background: var(--surface-card);
    border-radius: var(--card-radius);
    padding: 1.5rem 1rem;
    border: 1px solid var(--border-primary);
    width: 180px;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    box-shadow: var(--shadow-light);
}

.flow-stage:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.stage-icon {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-stage h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
    font-weight: 600;
}

.flow-stage p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
    text-align: center;
}

.flow-arrow {
    font-size: 1.8rem;
    color: var(--primary-color);
    opacity: 0.8;
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
    margin: 0 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Value Grid Styles */
.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 600px;
}

.value-card {
    background: var(--dark-surface);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
    border-color: var(--primary-color);
}

.value-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 10;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.carousel-btn:hover {
    background: var(--primary-color);
    transform: scale(1.1);
    box-shadow: var(--shadow-light);
}

.carousel-indicators {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.5);
}

.indicator:hover:not(.active) {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

/* Hero Description */
.hero-description {
    margin: 1rem 0;
}

.hero-description p {
    font-size: 1rem;
    color: var(--text-tertiary);
    line-height: 1.6;
    max-width: 500px;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3.26rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.44rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Background Images for Sections */
.about-background,
.services-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.section-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(1px);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 29, 58, 0.85);
    z-index: 1;
}

/* About Section */
.about {
    position: relative;
    background: var(--section-bg);
}

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

.about-card {
    background: var(--surface-card);
    padding: 2.5rem;
    border-radius: var(--card-radius);
    text-align: center;
    border: 1px solid var(--border-primary);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-light);
}

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

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
}

.icon-bg {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.about-card:hover .icon-bg {
    transform: rotate(45deg) scale(1.2);
    background: rgba(255, 255, 255, 0.2);
}

.about-card h3 {
    font-size: 1.96rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--text-secondary);
}

/* Services Section */
.services {
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--surface-card);
    padding: 2.5rem;
    border-radius: var(--card-radius);
    border: 1px solid var(--border-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    cursor: pointer;
}

/* Shimmer effect */
.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 70%);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s ease;
    pointer-events: none;
}

/* Glowing border effect */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--card-radius);
    background: linear-gradient(135deg, 
        var(--primary-color), 
        var(--secondary-color), 
        var(--accent-color));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    padding: 2px;
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

.service-card:hover::before {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

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

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(37, 99, 235, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border-color: transparent;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(247, 248, 251, 0.95) 100%);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 
        0 10px 25px rgba(37, 99, 235, 0.3),
        0 0 20px rgba(6, 182, 212, 0.2);
}

.service-card:hover .service-icon::before {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.83rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover h3 {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(37, 99, 235, 0.3);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    transition: all 0.3s ease;
}

.service-card:hover p {
    color: var(--text-primary);
}

.service-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-features li {
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-features li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    transition: left 0.5s ease;
}

.service-card:hover .service-features li {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.service-card:hover .service-features li::before {
    left: 100%;
}

/* Service Link Styles */
.service-link {
    color: inherit;
    text-decoration: none;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    transition: all 0.3s ease;
}

.service-link:hover {
    transform: scale(1.05);
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

/* Service CTA Styles */
.service-cta {
    margin-top: 1.5rem;
    text-align: center;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.service-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-heavy);
}

.service-btn i {
    font-size: 0.8rem;
}

/* Technology Section */
.technology {
    background: var(--dark-bg);
    position: relative;
}

.technology::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 98px,
        rgba(0, 102, 255, 0.03) 100px
    );
    z-index: 0;
}

.technology .container {
    position: relative;
    z-index: 1;
}

.tech-showcase {
    display: grid;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.tech-category {
    background: var(--surface-card);
    padding: 2rem;
    border-radius: var(--card-radius);
    border: 1px solid var(--border-primary);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.tech-category:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.tech-category h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.tech-category h3 i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.tech-description {
    margin-bottom: 1.5rem;
}

.tech-description p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.tech-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.metric {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(6, 182, 212, 0.05) 100%);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(37, 99, 235, 0.15);
    font-weight: 500;
    font-size: 0.85rem;
    white-space: nowrap;
    backdrop-filter: blur(10px);
}

/* Careers Section */
.careers {
    background: linear-gradient(135deg, 
        var(--dark-bg) 0%,
        var(--surface-elevated) 50%,
        var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0 120px;
}

.careers::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: conic-gradient(from 0deg at 50% 50%, 
        transparent 0deg, 
        rgba(37, 99, 235, 0.08) 90deg, 
        transparent 180deg, 
        rgba(6, 182, 212, 0.06) 270deg, 
        transparent 360deg);
    animation: rotate 30s linear infinite;
    z-index: 0;
}

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

.careers .container {
    position: relative;
    z-index: 1;
}

.careers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.career-card {
    background: var(--surface-card);
    padding: var(--card-padding-desktop);
    border-radius: var(--card-radius);
    border: 1px solid var(--border-primary);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.career-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(37, 99, 235, 0.06), 
        transparent);
    transition: left 0.6s ease;
}

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

.career-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-color);
    background: var(--surface-card);
}

.career-header {
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--border-primary);
    text-align: left;
    position: relative;
}

.career-header h3 {
    font-size: calc(var(--text-h3) * 2 * 0.6 * 1.5);
    line-height: var(--lh-h3);
    font-weight: 700;
    margin-bottom: var(--space-3);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.position-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: flex-start;
    margin-top: var(--space-3);
}

.position-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--text-primary);
    background: rgba(0, 102, 255, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 102, 255, 0.2);
}

.position-meta .count {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.2);
    color: var(--accent-color);
}

.career-content {
    margin-bottom: 1.5rem;
}

.career-section {
    margin-bottom: 1.2rem;
}

.career-section h4 {
    font-size: var(--text-h4);
    line-height: var(--lh-h4);
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.career-section h4 i {
    font-size: 1rem;
}

.career-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.career-section li {
    padding: 0.3rem 0;
    color: var(--text-primary);
    position: relative;
    padding-left: 1.2rem;
    line-height: 1.5;
    font-size: var(--text-body);
}

.career-section li::before {
    content: '▸';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 0.9rem;
}

.career-section li strong {
    color: var(--text-primary);
}

.apply-info {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(6, 182, 212, 0.02) 100%);
    padding: 1.2rem;
    border-radius: 0 0 var(--card-radius) var(--card-radius);
    border: none;
    border-top: 1px solid var(--border-primary);
    margin-top: 1.2rem;
    backdrop-filter: blur(10px);
    margin-left: calc(-1 * var(--card-padding-desktop));
    margin-right: calc(-1 * var(--card-padding-desktop));
    margin-bottom: calc(-1 * var(--card-padding-desktop));
}

.apply-info p {
    margin: 0.3rem 0;
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.apply-info p strong {
    color: var(--text-primary);
}

.apply-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: var(--text-body);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-4);
    position: relative;
    overflow: hidden;
}

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

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

.apply-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
}

/* Content Collapse */
.career-section.collapsible {
    max-height: 200px;
    overflow: hidden;
    transition: max-height 0.3s ease;
    position: relative;
}

.career-section.collapsible.expanded {
    max-height: none;
}

.career-section.collapsible:not(.expanded)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, var(--surface-card));
    pointer-events: none;
}

.expand-btn {
    color: var(--primary-color);
    font-size: var(--text-caption);
    margin-top: var(--space-2);
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}

.expand-btn:hover {
    color: var(--secondary-color);
}

/* Contact Section */
.contact {
    background: linear-gradient(180deg, 
        rgba(26, 29, 58, 1) 0%,
        rgba(36, 40, 86, 0.95) 50%,
        rgba(26, 29, 58, 1) 100%);
    position: relative;
    color: #FFFFFF;
}

.contact * {
    color: #FFFFFF !important;
}


.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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.02'%3E%3Cpath d='M30 30c0-16.569 13.431-30 30-30v60c-16.569 0-30-13.431-30-30z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: start;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.contact-details h4 {
    font-size: 1.44rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    
}

/* Form Styles */
.contact-form {
    background: var(--light-surface);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--dark-surface);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:valid + label,
.form-group textarea:valid + label {
    top: -0.5rem;
    left: 0.8rem;
    font-size: 0.8rem;
    color: var(--primary-color);
    background: var(--light-surface);
    padding: 0 0.5rem;
}

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

/* Footer */
.footer {
    background: var(--dark-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-logo .logo-image {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.footer-logo .logo-text {
    font-size: 3rem;
    font-weight: 700;
}

.footer-logo p {
    margin-top: 0.5rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(0, 102, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 102, 255, 0.6), 0 0 30px rgba(0, 102, 255, 0.4);
    }
}

/* Keep 2 columns for all desktop/tablet sizes */
@media (min-width: 768px) {
    .careers-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1200px;
        margin: 0 auto;
    }
}

/* Tablet specific adjustments */
@media (min-width: 768px) and (max-width: 1024px) {
    .finance-flow {
        gap: 0.8rem;
        max-width: 800px;
    }
    
    .flow-stage {
        width: 160px;
        height: 150px;
        padding: 1.2rem 0.8rem;
    }
    
    .flow-stage h3 {
        font-size: 1rem;
    }
    
    .flow-stage p {
        font-size: 0.85rem;
    }
}

/* Mobile 1 column */
@media (max-width: 767px) {
    .careers-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
}

/* General Mobile styles */
/* Mobile Styles - 480px and below */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-content {
        padding-left: 1rem;
        max-width: 100%;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-logo .logo-text {
        font-size: 2rem;
    }
    
    .nav-logo .logo-image {
        height: 35px;
    }
}

/* Tablet Portrait - 481px to 768px */
@media (min-width: 481px) and (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-content {
        padding-left: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 800px;
    }
    
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .careers-grid {
        grid-template-columns: 1fr;
    }
}

/* Tablet Landscape - 769px to 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 900px;
    }
    
    .contact-info {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .careers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--dark-bg);
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

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

    .hamburger {
        display: flex;
    }

    .hero-slide {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        justify-content: flex-start;
        padding-top: 2rem;
    }
    
    .hero-content {
        padding-left: 0;
        max-width: 100%;
        order: 1;
    }
    
    .hero-visual {
        margin-top: 1.5rem;
        padding: 0 1rem;
        order: 2;
    }
    
    .finance-flow {
        flex-wrap: wrap;
        gap: 0.8rem;
        justify-content: center;
        padding: 0.5rem;
    }
    
    .flow-stage {
        width: 140px;
        height: 140px;
        padding: 1rem 0.8rem;
    }
    
    .flow-stage h3 {
        font-size: 1rem;
    }
    
    .flow-stage p {
        font-size: 0.8rem;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
        font-size: 1.5rem;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .carousel-controls {
        bottom: 1rem;
        gap: 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .hero-title {
        font-size: 3.26rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .grid-item {
        width: 140px;
        height: 140px;
        border: 2px solid rgba(255, 255, 255, 0.15);
    }

    .container {
        padding: 0 1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .career-card {
        padding: var(--card-padding-mobile);
    }
    
    .position-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-2);
    }
    
    .career-section li {
        font-size: var(--text-body);
        line-height: 1.6;
        padding: var(--space-1) 0;
    }
    
    /* Sticky CTA for mobile */
    .apply-info {
        position: sticky;
        bottom: 0;
        background: var(--surface-elevated);
        padding: var(--space-4);
        margin: 0 calc(-1 * var(--card-padding-mobile)) calc(-1 * var(--card-padding-mobile));
        border-radius: 0 0 var(--card-radius) var(--card-radius);
    }
    
    .apply-btn {
        min-height: 44px;
        width: 100%;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .section-title {
        font-size: 2.61rem;
    }

    section {
        padding: 60px 0;
    }
}

/* Job WeChat Contact Section */
.job-wechat {
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    background: var(--surface-card);
    border-radius: var(--card-radius);
    text-align: center;
    border: 1px solid var(--border-primary);
    box-shadow: var(--shadow-light);
}

.job-wechat-qr {
    position: relative;
    display: inline-block;
    border: 2px solid var(--border-primary);
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 120px;
    height: 120px;
    margin-bottom: 0.8rem;
}

.job-wechat-qr:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.15);
    transform: scale(1.05);
}

.job-wechat-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.job-wechat-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 99, 235, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.job-wechat-qr:hover .job-wechat-overlay {
    opacity: 1;
}

.job-wechat-qr:hover .job-wechat-image {
    transform: scale(1.1);
}

.job-scan-line {
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00ff88, transparent);
    margin-bottom: 0.3rem;
    animation: scanAnimation 2s infinite;
}

.job-wechat-tip {
    color: white;
    font-size: 0.6rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.job-wechat-text {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

/* Original WeChat Contact Section */
.wechat-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.wechat-card {
    background: var(--surface-card);
    border-radius: 20px;
    padding: 1rem 2rem 2rem;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid var(--primary-color);
}

.wechat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(37, 99, 235, 0.1), 
        transparent);
    transition: left 0.6s ease;
}

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

.wechat-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(37, 99, 235, 0.15),
        0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.wechat-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
    position: relative;
}

.wechat-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.wechat-qr-container {
    display: flex;
    justify-content: center;
    margin-bottom: 0.6rem;
}

.wechat-qr {
    position: relative;
    border: 4px solid var(--secondary-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    width: 250px;
    height: 250px;
}

.wechat-qr:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
    transform: scale(1.05);
}

.wechat-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.wechat-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 99, 235, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wechat-qr:hover .wechat-overlay {
    opacity: 1;
}

.wechat-qr:hover .wechat-image {
    transform: scale(1.1);
}

.scan-line {
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00ff88, transparent);
    margin-bottom: 0.5rem;
    animation: scanAnimation 2s infinite;
}

@keyframes scanAnimation {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.wechat-tip {
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.wechat-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* Responsive Design for WeChat Section */
@media (max-width: 768px) {
    .wechat-contact {
        padding: 3rem 1rem 1.5rem;
    }
    
    .wechat-card {
        padding: 2rem 1.5rem;
        max-width: 90%;
    }
    
    .wechat-title {
        font-size: 1.5rem;
        margin-bottom: 0.48rem;
    }
    
    .wechat-qr {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .job-wechat {
        margin-bottom: 1.2rem;
        padding: 1rem;
    }
    
    .job-wechat-qr {
        width: 100px;
        height: 100px;
    }
    
    .job-wechat-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .job-wechat {
        margin-bottom: 1rem;
        padding: 0.8rem;
    }
    
    .job-wechat-qr {
        width: 90px;
        height: 90px;
    }
    
    .job-wechat-text {
        font-size: 0.8rem;
    }
    
    .wechat-card {
        padding: 0.8rem 1rem 1.5rem;
    }
    
    .wechat-qr {
        width: 180px;
        height: 180px;
    }
    
    .wechat-title {
        font-size: 1.3rem;
    }
}
/* vivid text enhancement */
.hero-title { text-shadow: 0 2px 12px rgba(0,0,0,.36); }
.hero-subtitle { text-shadow: 0 1px 8px rgba(0,0,0,.28); }
