/* ============================================
   ABOUT PAGE ENHANCED STYLES
   商务大气美观设计
   ============================================ */

/* ====== HERO SECTION ENHANCED ====== */
.page-hero-enhanced {
    min-height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--primary-darker);
}

.hero-bg-layer {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-gradient-1 {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a1628 0%, #0f3460 40%, #1a5276 70%, #0a2540 100%);
}

.hero-gradient-2 {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(37, 99, 235, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 80%, rgba(15, 52, 96, 0.3) 0%, transparent 50%);
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(96, 165, 250, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(96, 165, 250, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.hero-glow-1 {
    width: 500px;
    height: 500px;
    background: #2563eb;
    top: -10%;
    right: -5%;
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: #1e40af;
    bottom: -10%;
    left: -5%;
}

.hero-glow-3 {
    width: 300px;
    height: 300px;
    background: #3b82f6;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.08;
}

/* 浮动装饰线 */
.hero-line {
    position: absolute;
    background: linear-gradient(180deg, transparent, rgba(96, 165, 250, 0.2), transparent);
}

.hero-line-1 {
    width: 1px;
    height: 200px;
    top: 10%;
    left: 15%;
    animation: floatLine 6s ease-in-out infinite;
}

.hero-line-2 {
    width: 1px;
    height: 150px;
    top: 30%;
    right: 20%;
    animation: floatLine 8s ease-in-out infinite reverse;
}

.hero-line-3 {
    width: 1px;
    height: 180px;
    bottom: 15%;
    left: 40%;
    animation: floatLine 7s ease-in-out infinite 2s;
}

@keyframes floatLine {
    0%, 100% { opacity: 0.2; transform: translateY(0); }
    50% { opacity: 0.5; transform: translateY(-20px); }
}

.hero-content-container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(96, 165, 250, 0.25);
    border-radius: 100px;
    color: #93c5fd;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
}

.hero-badge svg {
    color: #fbbf24;
}

.page-hero-enhanced h1 {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.page-hero-enhanced h1 span {
    background: linear-gradient(135deg, #60a5fa, #3b82f6, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-enhanced .hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 60px;
}

.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-arrow {
    animation: bounceArrow 2s ease-in-out infinite;
}

@keyframes bounceArrow {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(8px); opacity: 0.8; }
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 3;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ====== STATS ENHANCED ====== */
.stats-section {
    padding: 80px 0 120px;
    background: var(--primary-white);
}

.stats-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card-enhanced {
    position: relative;
    padding: 48px 28px 40px;
    background: var(--primary-white);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    text-align: center;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card-enhanced::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, transparent 40%, rgba(37, 99, 235, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(15, 52, 96, 0.12);
    border-color: transparent;
}

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

.stat-bg {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
    transition: all 0.4s ease;
}

.stat-card-enhanced:hover .stat-bg {
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
}

.stat-icon-wrap {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 14px;
    color: #2563eb;
}

.stat-number-enhanced {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-darker);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.stat-number-enhanced .stat-suffix {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-gold);
    vertical-align: super;
}

.stat-label-enhanced {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.stat-accent-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    border-radius: 3px 3px 0 0;
    transition: width 0.4s ease;
}

.stat-card-enhanced:hover .stat-accent-line {
    width: 60%;
}

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

.section-label-badge {
    display: inline-block;
    padding: 6px 18px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: #2563eb;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-label-badge.light {
    background: rgba(255, 255, 255, 0.1);
    color: #93c5fd;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.section-title-enhanced {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-darker);
    margin-bottom: 0;
    letter-spacing: -0.02em;
}

.section-title-enhanced.light {
    color: #fff;
}

.section-title-enhanced span {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title-enhanced.light span {
    background: linear-gradient(135deg, #93c5fd, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-divider-enhanced {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    margin: 20px auto;
    border-radius: 3px;
}

.section-divider-enhanced.light {
    background: linear-gradient(90deg, #93c5fd, #60a5fa);
}

.section-desc-enhanced {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.section-desc-enhanced.light {
    color: rgba(255, 255, 255, 0.6);
}

/* ====== TIMELINE ENHANCED ====== */
.timeline-section {
    padding: 120px 0;
    background: var(--primary-light-gray);
    position: relative;
}

.timeline-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.timeline-enhanced {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #dbeafe, #2563eb, #dbeafe);
    transform: translateX(-50%);
}

.timeline-item-enhanced {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: flex-start;
}

.timeline-item-enhanced:nth-child(odd) {
    flex-direction: row;
}

.timeline-item-enhanced:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    z-index: 2;
}

.timeline-dot-inner {
    width: 16px;
    height: 16px;
    background: #2563eb;
    border-radius: 50%;
    border: 3px solid var(--primary-light-gray);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
    margin: 4px;
}

.timeline-dot.active .timeline-dot-inner {
    background: #fbbf24;
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.3);
}

.timeline-dot-ring {
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 50%;
    animation: pulseRing 2s ease-in-out infinite;
}

@keyframes pulseRing {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.3); opacity: 0; }
}

.timeline-card {
    width: calc(50% - 50px);
    background: var(--primary-white);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    position: relative;
    transition: all 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(15, 52, 96, 0.1);
}

.timeline-card.highlight {
    border-color: rgba(251, 191, 36, 0.3);
    background: linear-gradient(135deg, #fffbeb, #fff);
}

.timeline-item-enhanced:nth-child(odd) .timeline-card {
    margin-right: auto;
    text-align: right;
}

.timeline-item-enhanced:nth-child(even) .timeline-card {
    margin-left: auto;
    text-align: left;
}

.timeline-year-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 100px;
    margin-bottom: 16px;
}

.timeline-year-badge.current {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: var(--primary-darker);
}

.timeline-card-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-darker);
    margin-bottom: 8px;
}

.timeline-card-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ====== VALUES SECTION ENHANCED ====== */
.values-section-enhanced {
    padding: 120px 0;
    background: var(--primary-white);
    position: relative;
}

/* 使命卡片 */
.mission-card-enhanced {
    position: relative;
    width: 100%;
    margin: 0 auto 60px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    background: var(--primary-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.mission-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #eff6ff 100%);
    opacity: 0.5;
}

.mission-card-content {
    position: relative;
    z-index: 1;
    padding: 48px 60px;
}

.mission-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.mission-card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    border-radius: 10px;
}

.mission-card-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-darker);
    letter-spacing: 0.05em;
}

.mission-pillars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.mission-pillar {
    text-align: center;
    flex: 1;
}

.pillar-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    line-height: 1;
}

.pillar-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-darker);
    line-height: 1.4;
}

.pillar-divider {
    width: 1px;
    height: 80px;
    background: linear-gradient(180deg, transparent, #d1d5db, transparent);
    margin: 0 24px;
}

/* 愿景卡片 */
.vision-card-enhanced {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto 60px;
    background: linear-gradient(135deg, var(--primary-darker) 0%, #0f3460 100%);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.vision-card-enhanced::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(96, 165, 250, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(96, 165, 250, 0.05) 0%, transparent 50%);
}

.vision-card-visual {
    display: none;
}

.vision-card-text {
    flex: 1;
    padding: 48px;
    position: relative;
    z-index: 1;
}

.vision-label {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(96, 165, 250, 0.15);
    border: 1px solid rgba(96, 165, 250, 0.25);
    border-radius: 100px;
    color: #93c5fd;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.vision-card-text h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 12px;
}

.vision-card-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.vision-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.vision-tag {
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 500;
}

/* 价值卡片网格 */
.values-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.value-card-enhanced {
    position: relative;
    padding: 40px 28px 32px;
    background: var(--primary-white);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    text-align: center;
    overflow: hidden;
    transition: all 0.3s ease;
}

.value-card-enhanced:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(15, 52, 96, 0.1);
    border-color: transparent;
}

.value-card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 18px;
    color: #2563eb;
    transition: all 0.3s ease;
}

.value-card-enhanced:hover .value-card-icon {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    transform: scale(1.05);
}

.value-card-enhanced h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-darker);
    margin-bottom: 12px;
}

.value-card-enhanced p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.value-card-accent {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    border-radius: 3px 3px 0 0;
    transition: width 0.3s ease;
}

.value-card-enhanced:hover .value-card-accent {
    width: 50%;
}

/* 政策卡片并列 */
.policy-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.policy-card-enhanced {
    background: var(--primary-white);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.policy-card-enhanced:hover {
    box-shadow: 0 12px 40px rgba(15, 52, 96, 0.08);
    transform: translateY(-4px);
}

.policy-card-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.policy-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-radius: 12px;
    color: #059669;
    flex-shrink: 0;
}

.policy-card-icon.gold {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #d97706;
}

.policy-card-top h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-darker);
    margin-bottom: 4px;
}

.policy-card-top p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

.policy-card-body p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin: 0;
}

.quality-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.quality-mini-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f9fafb;
    border-radius: 10px;
    border: 1px solid #f3f4f6;
    transition: all 0.2s ease;
}

.quality-mini-item:hover {
    background: #eff6ff;
    border-color: #dbeafe;
}

.quality-mini-num {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2563eb;
    opacity: 0.5;
    min-width: 28px;
}

.quality-mini-text {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--primary-darker);
}

/* ====== TECH SECTION ENHANCED ====== */
.tech-section {
    padding: 120px 0;
    background: var(--primary-light-gray);
    position: relative;
}

.tech-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle, rgba(37, 99, 235, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
}

.features-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.tech-card {
    position: relative;
    padding: 40px 32px 32px;
    background: var(--primary-white);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(15, 52, 96, 0.1);
    border-color: transparent;
}

.tech-card-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.04) 0%, transparent 70%);
    transition: all 0.3s ease;
}

.tech-card:hover .tech-card-bg {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
}

.tech-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 14px;
    color: #2563eb;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.tech-card:hover .tech-card-icon {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
}

.tech-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-darker);
    margin-bottom: 12px;
}

.tech-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.tech-card-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    transition: width 0.3s ease;
}

.tech-card:hover .tech-card-line {
    width: 100%;
}

/* ====== APPLICATION SECTION ====== */
.application-section {
    padding: 120px 0;
    background: var(--primary-white);
}

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

.application-card {
    position: relative;
    padding: 40px 32px 32px;
    background: var(--primary-white);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    text-align: center;
    overflow: hidden;
    transition: all 0.3s ease;
}

.application-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(15, 52, 96, 0.1);
    border-color: transparent;
}

.application-card-visual {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 20px;
    color: #0284c7;
    transition: all 0.3s ease;
}

.application-card:hover .application-card-visual {
    background: linear-gradient(135deg, #0284c7, #0369a1);
    color: #fff;
    transform: scale(1.05);
}

.application-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-darker);
    margin-bottom: 12px;
}

.application-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.application-card-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #0284c7, #38bdf8);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.application-card:hover .application-card-line {
    width: 50%;
}

/* ====== CLIENTS ENHANCED ====== */
.clients-section-enhanced {
    background: #f5f7fa;
    padding: 120px 0;
}

.clients-section-enhanced .clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.clients-section-enhanced .client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 16px;
    background: #fff;
    border: 1px solid #e8ecf1;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.clients-section-enhanced .client-logo img {
    max-width: 85%;
    max-height: 40px;
    object-fit: contain;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.clients-section-enhanced .client-logo:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08);
    transform: translateY(-2px);
}

.clients-section-enhanced .client-logo:hover img {
    opacity: 1;
}

.clients-section-enhanced .section-title-enhanced.light {
    color: var(--primary-darker);
}

.clients-section-enhanced .section-title-enhanced.light span {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.clients-section-enhanced .section-desc-enhanced.light {
    color: var(--text-secondary);
}

.clients-section-enhanced .section-divider-enhanced.light {
    background: linear-gradient(90deg, #2563eb, #3b82f6);
}

/* ====== CTA ENHANCED ====== */
.cta-section-enhanced {
    padding: 120px 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}

.cta-content-enhanced {
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.cta-section-enhanced h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.cta-section-enhanced p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 40px;
}

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

.btn-primary-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: #fff;
    color: #2563eb;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    color: #1d4ed8;
}

.btn-secondary-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary-enhanced:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* ====== SCROLL ANIMATIONS ====== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-up.delay-1 { animation-delay: 0.15s; }
.fade-in-up.delay-2 { animation-delay: 0.3s; }
.fade-in-up.delay-3 { animation-delay: 0.45s; }

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

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

@media (max-width: 1024px) {
    .page-hero-enhanced h1 { font-size: 3rem; }
    .stats-grid-enhanced { grid-template-columns: repeat(2, 1fr); }
    .values-grid-enhanced { grid-template-columns: repeat(2, 1fr); }
    .features-grid-enhanced { grid-template-columns: repeat(2, 1fr); }
    .application-grid { grid-template-columns: repeat(2, 1fr); }
    .mission-pillars { flex-direction: column; gap: 24px; }
    .pillar-divider { width: 60px; height: 1px; margin: 0 auto; }
    .vision-card-enhanced { flex-direction: column; }
    .vision-card-visual { flex: none; padding: 32px; }
    .vision-card-text { padding: 0 32px 32px; text-align: center; }
    .vision-tags { justify-content: center; }
    .policy-cards-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .page-hero-enhanced { min-height: 70vh; }
    .page-hero-enhanced h1 { font-size: 2.2rem; }
    .page-hero-enhanced .hero-subtitle { font-size: 1rem; }
    .section-title-enhanced { font-size: 2rem; }
    .stats-grid-enhanced { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .stat-card-enhanced { padding: 32px 20px; }
    .stat-number-enhanced { font-size: 2.2rem; }
    .mission-card-content { padding: 32px 24px; }
    .pillar-text { font-size: 1.1rem; }
    .values-grid-enhanced { grid-template-columns: 1fr; }
    .features-grid-enhanced { grid-template-columns: 1fr; }
    .application-grid { grid-template-columns: 1fr; }
    .timeline-line { left: 20px; }
    .timeline-dot { left: 20px; }
    .timeline-item-enhanced,
    .timeline-item-enhanced:nth-child(even) {
        flex-direction: row;
        padding-left: 50px;
    }
    .timeline-card,
    .timeline-item-enhanced:nth-child(odd) .timeline-card {
        width: 100%;
        margin: 0;
        text-align: left;
    }
    .cta-section-enhanced h2 { font-size: 2rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .clients-section-enhanced .clients-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 480px) {
    .page-hero-enhanced h1 { font-size: 1.8rem; }
    .page-hero-enhanced .hero-subtitle { font-size: 0.9rem; }
    .section-title-enhanced { font-size: 1.6rem; }
    .stat-number-enhanced { font-size: 1.8rem; }
    .pillar-number { font-size: 2rem; }
    .pillar-text { font-size: 1rem; }
    .vision-card-text h3 { font-size: 1.3rem; }
    .quality-mini-grid { grid-template-columns: 1fr; }
    .clients-section-enhanced .clients-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .clients-section-enhanced .client-logo { padding: 14px 10px; min-height: 60px; }
    .clients-section-enhanced .client-logo img { max-height: 36px; }
}
