feat(marketing): 重构营销页面与四层叙事组件体系

- 重构 About、Contact、Team 等静态营销页面
- 重构 News 新闻列表与详情页
- 重构 Products 产品目录、详情与独立产品页面
- 重构 Services 与 Solutions 服务/解决方案页面
- 重构 Detail 四层叙事组件 (Hero → Value → Trust → CTA)
- 重构 Sections 页面区块组件 (Hero, CTA, SocialProof, WhyUs 等)
- 新增 SectionHeader、ServiceCard、CaseCard 等可复用组件
This commit is contained in:
张翔
2026-07-07 06:53:40 +08:00
parent 767931202d
commit 829d83522c
57 changed files with 3912 additions and 2380 deletions
+188
View File
@@ -0,0 +1,188 @@
'use client';
import { motion } from 'framer-motion';
import { type LucideIcon } from 'lucide-react';
import type { ReactNode } from 'react';
interface BrandSealProps {
text?: string;
variant?: 'red' | 'gold' | 'blue';
size?: 'sm' | 'md' | 'lg';
}
export function BrandSeal({ text = '旗舰', variant = 'red', size = 'md' }: BrandSealProps) {
const sizes = {
sm: 'w-14 h-14 text-xs',
md: 'w-20 h-20 text-sm',
lg: 'w-28 h-28 text-base',
};
const colors = {
red: {
border: '#C41E3A',
bg: 'rgba(196, 30, 58, 0.06)',
text: '#C41E3A',
shadow: 'rgba(196, 30, 58, 0.2)',
},
gold: {
border: '#d97706',
bg: 'rgba(217, 119, 6, 0.06)',
text: '#d97706',
shadow: 'rgba(217, 119, 6, 0.2)',
},
blue: {
border: '#2563eb',
bg: 'rgba(37, 99, 235, 0.06)',
text: '#2563eb',
shadow: 'rgba(37, 99, 235, 0.2)',
},
};
const color = colors[variant];
return (
<motion.div
initial={{ opacity: 0, scale: 0.5, rotate: -15 }}
whileInView={{ opacity: 1, scale: 1, rotate: -12 }}
viewport={{ once: true }}
transition={{
duration: 0.8,
delay: 0.5,
ease: [0.34, 1.56, 0.64, 1] as const,
}}
className={`relative ${sizes[size]} flex items-center justify-center rounded-lg border-2 font-bold select-none`}
style={{
borderColor: color.border,
backgroundColor: color.bg,
color: color.text,
boxShadow: `0 4px 16px ${color.shadow}`,
fontFamily: "'Noto Serif SC', serif",
}}
>
<div className="absolute inset-[4px] border border-current opacity-20 rounded-md" />
<span
className="relative z-10 tracking-widest"
style={{ writingMode: 'vertical-rl' }}
>
{text}
</span>
<div
className="absolute inset-0 rounded-lg opacity-0 hover:opacity-100 transition-opacity duration-500"
style={{
background: `conic-gradient(from 0deg, transparent 0%, ${color.border}10 50%, transparent 100%)`,
animation: 'rotate 8s linear infinite',
}}
/>
</motion.div>
);
}
interface CalligraphyTextProps {
children: ReactNode;
className?: string;
as?: 'h1' | 'h2' | 'h3' | 'span';
}
export function CalligraphyText({
children,
className = '',
as: Tag = 'span',
}: CalligraphyTextProps) {
return (
<Tag
className={`font-calligraphy ${className}`}
style={{
fontFamily: "'Noto Serif SC', 'STKaiti', 'KaiTi', serif",
fontWeight: 700,
}}
>
{children}
</Tag>
);
}
interface InkDividerProps {
variant?: 'subtle' | 'bold' | 'decorative';
}
export function InkDivider({ variant = 'subtle' }: InkDividerProps) {
if (variant === 'subtle') {
return (
<div className="flex items-center justify-center gap-4 py-6">
<div className="flex-1 h-px bg-gradient-to-r from-transparent via-gray-200 to-transparent" />
<div className="w-2 h-2 rounded-full bg-gray-300" />
<div className="flex-1 h-px bg-gradient-to-r from-transparent via-gray-200 to-transparent" />
</div>
);
}
if (variant === 'bold') {
return (
<div className="flex items-center gap-6 py-8">
<div className="flex-1 h-0.5 bg-gradient-to-r from-transparent via-gray-300 to-[#C41E3A]" />
<BrandSeal size="sm" variant="red" text="墨" />
<div className="flex-1 h-0.5 bg-gradient-to-l from-transparent via-gray-300 to-[#C41E3A]" />
</div>
);
}
return (
<div className="flex items-center justify-center py-8">
<svg width="200" height="24" viewBox="0 0 200 24" fill="none" className="opacity-40">
<path
d="M0 12 Q 50 4, 100 12 T 200 12"
stroke="#C41E3A"
strokeWidth="1"
fill="none"
vectorEffect="non-scaling-stroke"
/>
<circle cx="100" cy="12" r="3" fill="#C41E3A" opacity="0.6" />
<circle cx="60" cy="9" r="1.5" fill="#C41E3A" opacity="0.3" />
<circle cx="140" cy="15" r="1.5" fill="#C41E3A" opacity="0.3" />
</svg>
</div>
);
}
interface SectionHeaderProps {
badge?: string;
title: ReactNode;
subtitle?: string;
align?: 'left' | 'center';
icon?: LucideIcon;
}
export function SectionHeader({
badge,
title,
subtitle,
align = 'center',
icon: Icon,
}: SectionHeaderProps) {
return (
<motion.div
initial={{ opacity: 0, y: 28 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true, margin: '-80px' }}
transition={{ duration: 0.75, ease: [0.22, 1, 0.36, 1] as const }}
className={`mb-16 ${align === 'center' ? 'text-center max-w-3xl mx-auto' : ''}`}
>
{(badge || Icon) && (
<div className={`inline-flex items-center gap-2 px-4 py-1.5 rounded-full bg-red-50 text-brand text-sm font-bold tracking-wider uppercase mb-5 ${
align === 'center' ? '' : ''
}`}>
{Icon && <Icon className="w-4 h-4" />}
{badge}
</div>
)}
<h2 className="text-3xl md:text-4xl lg:text-5xl font-bold tracking-tight text-gray-900 mb-4">
{title}
</h2>
{subtitle && (
<p className="text-lg text-gray-600 leading-relaxed">{subtitle}</p>
)}
</motion.div>
);
}
+1 -1
View File
@@ -18,7 +18,7 @@ export function CaseStudyCard({ study, index }: CaseStudyCardProps) {
className="rounded-xl border border-gray-200 bg-white p-6 shadow-sm transition-shadow hover:shadow-md"
>
<div className="mb-3 flex items-center gap-2">
<span className="rounded-full bg-red-50 px-2.5 py-1 text-xs font-medium text-[#C41E3A]">
<span className="rounded-full bg-red-50 px-2.5 py-1 text-xs font-medium text-brand">
{study.industry}
</span>
<span className="text-sm text-gray-500">{study.client}</span>
@@ -23,7 +23,7 @@ export function CertificationList({ certifications }: CertificationListProps) {
transition={{ duration: 0.3, delay: index * 0.05 }}
className="inline-flex items-center gap-2 rounded-full border border-gray-200 bg-white px-4 py-2 text-sm text-gray-700 shadow-sm transition-all hover:border-gray-300 hover:shadow-md"
>
<Award className="h-4 w-4 text-[#C41E3A]" />
<Award className="h-4 w-4 text-brand" />
<span className="font-medium">{cert.name}</span>
<span className="text-xs text-gray-400">{cert.issuer}</span>
{cert.link && cert.link !== '#' && (
@@ -20,7 +20,7 @@ const typeConfig = {
icon: Lightbulb,
label: '方案',
color: '#C41E3A',
bg: '#fef2f2',
bg: '#FEF2F4',
},
service: {
icon: Wrench,
@@ -40,7 +40,7 @@ export function CrossRecommendGrid({ items, title = '相关推荐' }: CrossRecom
initial={{ opacity: 0 }}
whileInView={{ opacity: 1 }}
viewport={{ once: true }}
className="mb-2 text-center text-2xl font-bold text-gray-900"
className="mb-2 text-center text-2xl font-bold text-ink"
>
{title}
</motion.h2>
@@ -49,7 +49,7 @@ export function CrossRecommendGrid({ items, title = '相关推荐' }: CrossRecom
whileInView={{ opacity: 1 }}
viewport={{ once: true }}
transition={{ delay: 0.1 }}
className="mx-auto mb-8 max-w-2xl text-center text-sm text-gray-500"
className="mx-auto mb-8 max-w-2xl text-center text-sm text-text-muted"
>
</motion.p>
@@ -67,7 +67,7 @@ export function CrossRecommendGrid({ items, title = '相关推荐' }: CrossRecom
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true }}
transition={{ duration: 0.4, delay: index * 0.08 }}
className="group flex items-start gap-4 rounded-xl border border-gray-100 bg-gray-50/50 p-5 transition-all hover:border-gray-200 hover:bg-white hover:shadow-md"
className="group flex items-start gap-4 rounded-xl border border-border-primary bg-bg-secondary/50 p-5 transition-all hover:border-border-secondary hover:bg-white hover:shadow-md"
>
<div
className="flex h-10 w-10 shrink-0 items-center justify-center rounded-lg"
@@ -86,10 +86,10 @@ export function CrossRecommendGrid({ items, title = '相关推荐' }: CrossRecom
>
{config.label}
</span>
<ArrowRight className="h-3 w-3 text-gray-400 opacity-0 transition-opacity group-hover:opacity-100" />
<ArrowRight className="h-3 w-3 text-text-muted opacity-0 transition-opacity group-hover:opacity-100" />
</div>
<h3 className="text-sm font-semibold text-gray-900">{item.title}</h3>
<p className="mt-1 text-xs leading-relaxed text-gray-500">
<h3 className="text-sm font-semibold text-ink">{item.title}</h3>
<p className="mt-1 text-xs leading-relaxed text-text-muted">
{item.reason}
</p>
</div>
+48 -24
View File
@@ -1,8 +1,9 @@
'use client';
import { motion } from 'framer-motion';
import { ArrowRight } from 'lucide-react';
import { ArrowRight, MessageCircle, Download } from 'lucide-react';
import type { HeroTheme } from '@/lib/constants/hero-themes';
import { DESIGN_SYSTEM } from '@/lib/constants/design-system';
interface DetailCTASectionProps {
theme: HeroTheme;
@@ -13,46 +14,69 @@ interface DetailCTASectionProps {
}
export function DetailCTASection({
theme,
theme: _theme,
title = '准备好开始了吗?',
description = '联系我们,获取专属方案和报价',
primaryAction,
secondaryAction,
}: DetailCTASectionProps) {
return (
<section
className="py-16 lg:py-20"
style={{
background: `linear-gradient(135deg, ${theme.gradientFrom}, ${theme.gradientTo})`,
}}
>
<div className="container-wide text-center">
<motion.div
initial={{ opacity: 0, y: 20 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true }}
transition={{ duration: 0.5 }}
>
<h2 className="text-2xl font-bold text-white lg:text-3xl">{title}</h2>
<p className="mx-auto mt-3 max-w-xl text-sm text-white/70">{description}</p>
<section className="relative py-24 lg:py-32 overflow-hidden bg-bg-secondary">
<div className="absolute top-0 left-0 right-0 h-px bg-border-primary" />
<div className="absolute bottom-0 left-0 right-0 h-px bg-border-primary" />
<div className="mt-8 flex flex-wrap justify-center gap-4">
<a
<div className="container-wide relative">
<motion.div
initial={{ opacity: 0, y: 32 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true, margin: '-100px' }}
transition={{ duration: 0.8, ease: [0.4, 0, 0.2, 1] }}
className="max-w-3xl mx-auto text-center"
>
<div className="inline-flex items-center gap-2 px-4 py-2 rounded-full bg-brand-soft text-brand text-sm font-medium mb-6 border border-brand/20">
<MessageCircle className="w-4 h-4" />
</div>
<h2 className={`${DESIGN_SYSTEM.typography.hero.title} text-ink mb-6`}>
{title}
</h2>
<p className="text-lg md:text-xl text-text-secondary mb-12 max-w-2xl mx-auto leading-relaxed">
{description}
</p>
<div className="flex flex-col sm:flex-row items-center justify-center gap-5">
<motion.a
href={primaryAction.href}
className="inline-flex items-center gap-2 rounded-lg bg-white px-8 py-3 text-sm font-semibold text-gray-900 shadow-lg transition-all hover:shadow-xl"
whileHover={{ scale: 1.02, y: -2 }}
whileTap={{ scale: 0.98 }}
className="group relative inline-flex items-center gap-3 px-10 py-4 bg-brand text-white font-bold rounded-xl shadow-md hover:shadow-lg transition-all duration-300"
>
{primaryAction.label}
<ArrowRight className="h-4 w-4" />
</a>
<span>{primaryAction.label}</span>
<ArrowRight className="w-5 h-5 group-hover:translate-x-1 transition-transform" />
</motion.a>
{secondaryAction && (
<a
href={secondaryAction.href}
className="inline-flex items-center rounded-lg border border-white/30 px-6 py-3 text-sm font-semibold text-white transition-all hover:bg-white/10"
className="group inline-flex items-center gap-2.5 px-8 py-4 text-ink font-semibold rounded-xl border-2 border-border-primary hover:bg-white hover:border-brand/30 transition-all duration-300"
>
<Download className="w-5 h-5 transition-transform duration-300 group-hover:-translate-y-0.5" />
{secondaryAction.label}
</a>
)}
</div>
<motion.p
initial={{ opacity: 0 }}
whileInView={{ opacity: 1 }}
viewport={{ once: true }}
transition={{ delay: 0.5, duration: 0.6 }}
className="mt-10 text-sm text-text-muted"
>
&lt; 2 · 7×24 ·
</motion.p>
</motion.div>
</div>
</section>
+126 -110
View File
@@ -1,7 +1,9 @@
'use client';
import { motion } from 'framer-motion';
import type { HeroTheme, HeroTexture } from '@/lib/constants/hero-themes';
import { ArrowRight, Sparkles, ChevronDown } from 'lucide-react';
import type { HeroTheme } from '@/lib/constants/hero-themes';
import { PressableButton } from './micro-interactions';
interface DetailHeroProps {
theme: HeroTheme;
@@ -13,42 +15,6 @@ interface DetailHeroProps {
secondaryAction?: { label: string; href: string };
}
function TextureOverlay({ texture }: { texture: HeroTexture }) {
if (texture.type === 'none') return null;
const textureStyles: Record<string, React.CSSProperties> = {
grid: {
backgroundImage:
'linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px)',
backgroundSize: '60px 60px',
},
'data-flow': {
backgroundImage:
'radial-gradient(circle at 20% 50%, rgba(255,255,255,.04) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255,255,255,.03) 0%, transparent 40%)',
},
layers: {
backgroundImage:
'linear-gradient(180deg, transparent 0%, rgba(255,255,255,.02) 50%, transparent 100%)',
},
'shield-hex': {
backgroundImage:
'repeating-linear-gradient(60deg, transparent, transparent 30px, rgba(255,255,255,.025) 30px, rgba(255,255,255,.025) 31px)',
},
circuit: {
backgroundImage:
'linear-gradient(90deg, transparent 49%, rgba(255,255,255,.02) 49%, rgba(255,255,255,.02) 51%, transparent 51%)',
backgroundSize: '40px 40px',
},
};
return (
<div
className="pointer-events-none absolute inset-0"
style={{ opacity: texture.opacity, ...textureStyles[texture.type] }}
/>
);
}
export function DetailHero({
theme,
badge,
@@ -59,114 +25,164 @@ export function DetailHero({
secondaryAction,
}: DetailHeroProps) {
const isCenterLayout = theme.layout === 'center' || theme.layout === 'wide';
const isIconLeft = theme.layout === 'icon-left';
const containerClasses =
theme.layout === 'wide'
? 'container-wide py-24 lg:py-32'
: 'container-wide py-20 lg:py-28';
const contentClasses = [
'max-w-4xl',
isCenterLayout ? 'mx-auto text-center' : '',
isIconLeft ? 'flex items-center gap-8' : '',
]
.filter(Boolean)
.join(' ');
return (
<section
className="relative overflow-hidden"
style={{
background: `linear-gradient(${theme.gradientAngle}deg, ${theme.gradientFrom}, ${theme.gradientTo})`,
}}
>
<TextureOverlay texture={theme.texture} />
<div className={containerClasses}>
<section className="relative min-h-[700px] flex items-center overflow-hidden bg-white">
<div className={`container-wide relative z-10 ${theme.layout === 'wide' ? 'py-36 lg:py-44' : 'py-32 lg:py-40'}`}>
<motion.div
initial={{ opacity: 0, y: 24 }}
animate={{ opacity: 1, y: 0 }}
transition={{ duration: 0.6, ease: 'easeOut' }}
className={contentClasses}
initial="hidden"
animate="visible"
variants={{
hidden: {},
visible: {
transition: {
staggerChildren: 0.12,
delayChildren: 0.2,
},
},
}}
className={`max-w-4xl ${isCenterLayout ? 'mx-auto text-center' : ''}`}
>
{(badge || theme.badge) && (
<motion.span
initial={{ opacity: 0, scale: 0.9 }}
animate={{ opacity: 1, scale: 1 }}
transition={{ delay: 0.1, duration: 0.4 }}
className={`mb-4 inline-block rounded-full px-3 py-1 text-xs font-medium tracking-wide ${
<motion.div
variants={{
hidden: { opacity: 0, scale: 0.9, filter: 'blur(8px)' },
visible: {
opacity: 1,
scale: 1,
filter: 'blur(0px)',
transition: {
duration: 0.7,
ease: [0.22, 1, 0.36, 1] as const,
},
},
}}
className={`mb-8 inline-flex items-center gap-2.5 rounded-full px-5 py-2.5 text-xs font-semibold tracking-widest uppercase ${
isCenterLayout ? '' : ''
}`}
style={{
backgroundColor: theme.accentBg,
backgroundColor: `${theme.accentColor}10`,
color: theme.accentColor,
border: `1px solid ${theme.accentColor}33`,
borderColor: `${theme.accentColor}25`,
}}
>
<motion.span
animate={{ rotate: [0, 360] }}
transition={{ duration: 4, repeat: Infinity, ease: 'linear' as const }}
>
<Sparkles className="w-3.5 h-3.5" />
</motion.span>
{badge || theme.badge}
</motion.span>
</motion.div>
)}
<h1
className="text-3xl font-bold tracking-tight text-white sm:text-4xl lg:text-5xl"
style={{ lineHeight: 1.2 }}
<motion.h1
variants={{
hidden: { opacity: 0, y: 40, filter: 'blur(10px)' },
visible: {
opacity: 1,
y: 0,
filter: 'blur(0px)',
transition: {
duration: 0.9,
ease: [0.22, 1, 0.36, 1] as const,
},
},
}}
className={`text-4xl md:text-5xl lg:text-[3.75rem] font-bold tracking-tight leading-[1.1] mb-8 text-ink ${
isCenterLayout ? '' : ''
}`}
>
{title}
</h1>
</motion.h1>
<p
className={`mt-4 text-lg ${
isCenterLayout ? 'mx-auto max-w-2xl' : 'max-w-2xl'
}`}
style={{ color: `${theme.accentColor}cc`, lineHeight: 1.6 }}
<motion.p
variants={{
hidden: { opacity: 0, y: 30 },
visible: {
opacity: 1,
y: 0,
transition: {
duration: 0.75,
delay: 0.25,
ease: [0.22, 1, 0.36, 1] as const,
},
},
}}
className="text-lg md:text-xl text-text-secondary leading-relaxed mb-5 max-w-3xl"
>
{subtitle}
</p>
</motion.p>
{description && (
<p
className={`mt-3 text-base leading-relaxed ${
isCenterLayout ? 'mx-auto max-w-2xl' : 'max-w-2xl'
}`}
style={{ color: 'rgba(255,255,255,0.7)' }}
<motion.p
variants={{
hidden: { opacity: 0, y: 24 },
visible: {
opacity: 1,
y: 0,
transition: {
duration: 0.65,
delay: 0.4,
ease: [0.22, 1, 0.36, 1] as const,
},
},
}}
className="text-base text-text-muted mt-5 max-w-2xl leading-relaxed"
>
{description}
</p>
</motion.p>
)}
{(primaryAction || secondaryAction) && (
<div
className={`mt-8 flex flex-wrap gap-4 ${
isCenterLayout ? 'justify-center' : ''
}`}
<motion.div
variants={{
hidden: { opacity: 0, y: 24 },
visible: {
opacity: 1,
y: 0,
transition: {
duration: 0.6,
delay: 0.55,
ease: [0.22, 1, 0.36, 1] as const,
},
},
}}
className={`mt-12 flex flex-wrap gap-5 ${isCenterLayout ? 'justify-center' : ''}`}
>
{primaryAction && (
<a
href={primaryAction.href}
className="inline-flex items-center rounded-lg px-6 py-3 text-sm font-semibold text-white shadow-lg transition-all hover:shadow-xl hover:brightness-110"
style={{
backgroundColor: theme.accentColor,
}}
>
{primaryAction.label}
<a href={primaryAction.href}>
<PressableButton variant="primary" className="px-10 py-4 text-base shadow-lg group">
<span>{primaryAction.label}</span>
<ArrowRight className="w-5 h-5 group-hover:translate-x-1 group-hover:-translate-y-0.5 transition-transform duration-300" />
</PressableButton>
</a>
)}
{secondaryAction && (
<a
href={secondaryAction.href}
className="inline-flex items-center rounded-lg border px-6 py-3 text-sm font-semibold transition-all hover:bg-white/10"
style={{
borderColor: `${theme.accentColor}66`,
color: `${theme.accentColor}ee`,
}}
>
{secondaryAction.label}
<a href={secondaryAction.href}>
<PressableButton variant="secondary" className="px-8 py-4 text-base">
{secondaryAction.label}
</PressableButton>
</a>
)}
</div>
</motion.div>
)}
</motion.div>
<motion.div
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}
transition={{ delay: 1.5, duration: 0.8 }}
className="absolute bottom-8 left-1/2 -translate-x-1/2"
>
<motion.div
animate={{ y: [0, 8, 0] }}
transition={{ duration: 2, repeat: Infinity, ease: 'easeInOut' as const }}
className="text-text-muted cursor-pointer hover:text-text-secondary transition-colors"
>
<ChevronDown className="w-6 h-6" />
</motion.div>
</motion.div>
</div>
</section>
);
+393 -51
View File
@@ -1,90 +1,432 @@
'use client';
import { motion } from 'framer-motion';
import { CheckCircle2, Zap, Shield, TrendingUp, type LucideIcon } from 'lucide-react';
import { motion, useInView } from 'framer-motion';
import { useRef, useState } from 'react';
import {
CheckCircle2,
ArrowRight,
Zap,
Shield,
BarChart3,
Cpu,
TrendingUp,
Clock,
Award,
Users,
type LucideIcon,
} from 'lucide-react';
import { TiltCard, InkGlowCard } from './micro-interactions';
import type { Product } from '@/lib/constants/products';
interface ProductValueSectionProps {
product: Product;
}
const icons: LucideIcon[] = [CheckCircle2, Zap, Shield, TrendingUp];
const featureIcons: LucideIcon[] = [Zap, Shield, BarChart3, Cpu];
function FeatureTags({ text }: { text: string }) {
const [title, ...descParts] = text.split('');
const desc = descParts.join('');
if (!desc) return <span className="text-sm font-medium text-ink">{title}</span>;
const tags = desc.split('、').map((tag) => tag.trim()).filter(Boolean);
return (
<div className="space-y-3">
<h4 className="font-bold text-ink text-base">{title}</h4>
<div className="flex flex-wrap gap-2">
{tags.map((tag, i) => (
<motion.span
key={tag}
initial={{ opacity: 0, scale: 0.8 }}
whileInView={{ opacity: 1, scale: 1 }}
viewport={{ once: true }}
transition={{ delay: i * 0.05, duration: 0.3 }}
className="px-3 py-1.5 bg-bg-secondary text-text-secondary text-xs font-medium rounded-lg border border-border-primary hover:border-brand/30 hover:bg-brand-soft/30 transition-colors cursor-default"
>
{tag}
</motion.span>
))}
</div>
</div>
);
}
function CircularProgress({ value, label, color = '#C41E3A' }: { value: number; label: string; color?: string }) {
const ref = useRef<HTMLDivElement>(null);
const isInView = useInView(ref, { once: true });
const [progress, setProgress] = useState(0);
if (isInView && progress === 0) {
setTimeout(() => setProgress(value), 300);
}
const circumference = 2 * Math.PI * 45;
const strokeDashoffset = circumference - (progress / 100) * circumference;
return (
<div ref={ref} className="text-center">
<div className="relative w-28 h-28 mx-auto mb-3">
<svg className="w-full h-full -rotate-90" viewBox="0 0 100 100">
<circle
cx="50"
cy="50"
r="45"
fill="none"
stroke="var(--color-bg-tertiary)"
strokeWidth="8"
/>
<motion.circle
cx="50"
cy="50"
r="45"
fill="none"
stroke={color}
strokeWidth="8"
strokeLinecap="round"
strokeDasharray={circumference}
initial={{ strokeDashoffset: circumference }}
animate={{ strokeDashoffset }}
transition={{ duration: 1.5, ease: [0.22, 1, 0.36, 1] as const }}
/>
</svg>
<div className="absolute inset-0 flex items-center justify-center">
<span className="text-xl font-bold text-ink">{value}%</span>
</div>
</div>
<p className="text-xs font-medium text-text-muted">{label}</p>
</div>
);
}
function MetricCard({
icon: Icon,
value,
metric,
description,
index: _index,
accent = false,
}: {
icon: LucideIcon;
value: string;
metric: string;
description: string;
index: number;
accent?: boolean;
}) {
const ref = useRef<HTMLDivElement>(null);
const isInView = useInView(ref, { once: true });
const numericValue = parseFloat(value.replace(/[^0-9.]/g, ''));
const suffix = value.replace(/[0-9.]/g, '');
const [displayValue, setDisplayValue] = useState('0');
if (isInView && displayValue === '0') {
if (isNaN(numericValue)) {
setDisplayValue(value);
} else {
let startTime: number;
const animate = (currentTime: number) => {
if (!startTime) startTime = currentTime;
const progress = Math.min((currentTime - startTime) / 2000, 1);
const easeOutQuart = 1 - Math.pow(1 - progress, 4);
setDisplayValue(
Number.isInteger(numericValue)
? Math.floor(numericValue * easeOutQuart).toString() + suffix
: (numericValue * easeOutQuart).toFixed(1) + suffix
);
if (progress < 1) requestAnimationFrame(animate);
};
requestAnimationFrame(animate);
}
}
return (
<TiltCard
tiltAmount={8}
glareEnable={accent}
glareMaxOpacity={accent ? 0.12 : 0}
className={`p-8 rounded-2xl ${
accent
? 'bg-brand-soft/30 border border-brand/20'
: 'bg-white border border-border-primary hover:border-border-secondary'
}`}
>
<div className="relative">
<div
className={`w-12 h-12 rounded-xl flex items-center justify-center mb-5 shadow-md ${
accent
? 'bg-gradient-to-br from-[#C41E3A] to-[#99182d] text-white'
: 'bg-bg-secondary text-text-secondary'
}`}
>
<Icon className="w-6 h-6" />
</div>
<div className="text-4xl md:text-5xl font-bold text-ink mb-2 tracking-tight">
{displayValue}
</div>
<h3 className="text-lg font-semibold text-ink mb-1.5">{metric}</h3>
<p className="text-sm text-text-muted leading-relaxed">{description}</p>
</div>
</TiltCard>
);
}
export function ProductValueSection({ product }: ProductValueSectionProps) {
return (
<section className="bg-white py-16 lg:py-20">
<div className="container-wide">
<div className="grid grid-cols-1 gap-12 lg:grid-cols-2">
<motion.div
<section className="relative bg-white py-24 lg:py-32 overflow-hidden">
<div className="container-wide relative">
<motion.div
initial={{ opacity: 0, y: 32 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true, margin: '-120px' }}
transition={{ duration: 0.85, ease: [0.22, 1, 0.36, 1] as const }}
className="max-w-3xl mx-auto text-center mb-20"
>
<motion.span
initial={{ opacity: 0, x: -20 }}
whileInView={{ opacity: 1, x: 0 }}
viewport={{ once: true }}
transition={{ duration: 0.5 }}
transition={{ delay: 0.15, duration: 0.5 }}
className="inline-flex items-center gap-2 px-4 py-1.5 rounded-full bg-brand-soft text-brand text-sm font-bold tracking-wider uppercase mb-5"
>
<h2 className="mb-4 text-2xl font-bold text-gray-900 lg:text-3xl">
</h2>
<p className="mb-6 text-sm leading-relaxed text-gray-600">
{product.overview}
</p>
<ul className="space-y-3">
<Zap className="w-4 h-4" />
</motion.span>
<h2 className="text-3xl md:text-4xl lg:text-5xl font-bold tracking-tight text-ink mb-5">
<span className="relative inline-block">
{product.title}
<motion.span
layoutId="underline"
className="absolute -bottom-1 left-0 right-0 h-1 bg-gradient-to-r from-[#C41E3A] to-[#99182d] rounded-full"
initial={{ scaleX: 0 }}
whileInView={{ scaleX: 1 }}
viewport={{ once: true }}
transition={{ delay: 0.7, duration: 0.6, ease: [0.22, 1, 0.36, 1] as const }}
/>
</span>
</h2>
<p className="text-lg md:text-xl text-text-secondary max-w-2xl mx-auto leading-relaxed">
{product.overview}
</p>
</motion.div>
<div className="grid grid-cols-1 xl:grid-cols-5 gap-10 lg:gap-14">
<motion.div
initial="hidden"
whileInView="visible"
viewport={{ once: true, margin: '-80px' }}
variants={{
hidden: {},
visible: {
transition: {
staggerChildren: 0.08,
delayChildren: 0.2,
},
},
}}
className="xl:col-span-3 space-y-6"
>
<div className="flex items-center gap-4 mb-8">
<div className="w-12 h-12 rounded-2xl bg-gradient-to-br from-[#C41E3A] via-red-600 to-[#99182d] flex items-center justify-center shadow-md shadow-brand/20">
<Zap className="w-6 h-6 text-white" />
</div>
<div>
<h3 className="text-2xl font-bold text-ink"></h3>
<p className="text-sm text-text-muted mt-0.5"></p>
</div>
</div>
<div className="grid grid-cols-1 sm:grid-cols-2 gap-5">
{product.features.map((feature, index) => {
const Icon = icons[index % icons.length]!;
const Icon = featureIcons[index % featureIcons.length]!;
return (
<motion.li
<InkGlowCard
key={feature}
initial={{ opacity: 0, x: -10 }}
whileInView={{ opacity: 1, x: 0 }}
viewport={{ once: true }}
transition={{ duration: 0.3, delay: index * 0.05 }}
className="flex items-start gap-3"
active={index === 0}
className="group p-6 hover:border-brand/20"
>
<Icon className="mt-0.5 h-5 w-5 shrink-0 text-[#C41E3A]" />
<span className="text-sm leading-relaxed text-gray-700">{feature}</span>
</motion.li>
<motion.div
variants={{
hidden: { opacity: 0, y: 20 },
visible: {
opacity: 1,
y: 0,
transition: {
duration: 0.55,
ease: [0.22, 1, 0.36, 1] as const,
},
},
}}
>
<div className="flex items-start gap-4">
<div
className={`shrink-0 w-11 h-11 rounded-xl flex items-center justify-center transition-all duration-300 shadow-sm ${
index === 0
? 'bg-gradient-to-br from-[#C41E3A] to-[#99182d] text-white shadow-md shadow-brand/25'
: 'bg-bg-secondary text-text-secondary group-hover:from-[#C41E3A] group-hover:to-[#99182d] group-hover:text-white group-hover:shadow-md group-hover:shadow-brand/25'
}`}
>
<Icon className="w-5.5 h-5.5" />
</div>
<div className="flex-1 min-w-0 pt-1">
<FeatureTags text={feature} />
</div>
</div>
</motion.div>
</InkGlowCard>
);
})}
</ul>
</div>
</motion.div>
<motion.div
initial={{ opacity: 0, x: 20 }}
whileInView={{ opacity: 1, x: 0 }}
viewport={{ once: true }}
transition={{ duration: 0.5, delay: 0.15 }}
initial="hidden"
whileInView="visible"
viewport={{ once: true, margin: '-80px' }}
variants={{
hidden: {},
visible: {
transition: {
staggerChildren: 0.06,
delayChildren: 0.35,
},
},
}}
className="xl:col-span-2 space-y-6"
>
<h2 className="mb-4 text-2xl font-bold text-gray-900 lg:text-3xl">
</h2>
<div className="grid grid-cols-1 gap-4 sm:grid-cols-2">
<div className="flex items-center gap-4 mb-8">
<div className="w-12 h-12 rounded-2xl bg-gradient-to-br from-blue-500 to-indigo-600 flex items-center justify-center shadow-md shadow-blue-500/20">
<TrendingUp className="w-6 h-6 text-white" />
</div>
<div>
<h3 className="text-2xl font-bold text-ink"></h3>
<p className="text-sm text-text-muted mt-0.5"></p>
</div>
</div>
<div className="space-y-4">
{product.benefits.map((benefit, index) => (
<motion.div
key={benefit}
initial={{ opacity: 0, y: 10 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true }}
transition={{ duration: 0.3, delay: index * 0.06 }}
className="rounded-lg border border-gray-100 bg-gray-50 p-4"
key={index}
variants={{
hidden: { opacity: 0, x: 20 },
visible: {
opacity: 1,
x: 0,
transition: {
duration: 0.5,
ease: [0.22, 1, 0.36, 1] as const,
},
},
}}
className="group p-5 rounded-2xl bg-bg-secondary border border-border-primary hover:border-brand/30 hover:shadow-md hover:-translate-y-1 transition-all duration-300"
>
<CheckCircle2 className="mb-2 h-5 w-5 text-green-600" />
<p className="text-sm leading-relaxed text-gray-700">{benefit}</p>
<div className="flex items-start gap-3">
<CheckCircle2 className="w-5 h-5 text-brand mt-0.5 shrink-0 group-hover:scale-110 transition-transform" />
<p className="text-sm font-medium text-text-secondary leading-relaxed">{benefit}</p>
</div>
</motion.div>
))}
</div>
<div className="mt-8 rounded-xl bg-gray-900 p-6">
<h3 className="mb-3 text-sm font-semibold text-white"></h3>
<ul className="space-y-2">
{product.specs.slice(0, 4).map((spec) => (
<li key={spec} className="flex items-start gap-2 text-xs text-gray-300">
<span className="mt-1 h-1 w-1 shrink-0 rounded-full bg-[#C41E3A]" />
{spec}
</li>
<motion.div
variants={{
hidden: { opacity: 0, y: 20 },
visible: {
opacity: 1,
y: 0,
transition: {
delay: 0.5,
duration: 0.55,
ease: [0.22, 1, 0.36, 1] as const,
},
},
}}
className="mt-8 p-6 rounded-2xl bg-bg-secondary border border-border-primary"
>
<h4 className="font-bold text-ink mb-5 flex items-center gap-2.5">
<Shield className="w-5 h-5 text-green-600" />
</h4>
<ul className="space-y-3.5">
{product.specs.slice(0, 5).map((spec, index) => (
<motion.li
key={index}
initial={{ opacity: 0, x: -15 }}
whileInView={{ opacity: 1, x: 0 }}
viewport={{ once: true }}
transition={{
delay: 0.6 + index * 0.05,
duration: 0.35,
ease: [0.22, 1, 0.36, 1] as const,
}}
className="flex items-start gap-3 text-sm text-text-secondary group/item"
>
<ArrowRight className="w-4 h-4 text-brand mt-0.5 shrink-0 group-hover/item:translate-x-1 transition-transform" />
<span>{spec}</span>
</motion.li>
))}
</ul>
</div>
</motion.div>
</motion.div>
</div>
{product.dataProofs && product.dataProofs.length > 0 && (
<motion.div
initial={{ opacity: 0, y: 32 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true, margin: '-80px' }}
transition={{ duration: 0.75, delay: 0.2 }}
className="mt-24"
>
<div className="text-center mb-14">
<span className="inline-block mb-4 text-sm font-bold text-brand tracking-wider uppercase">
</span>
<h3 className="text-2xl md:text-3xl font-bold tracking-tight text-ink">
</h3>
</div>
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-7 max-w-5xl mx-auto">
{product.dataProofs.map((proof, index) => {
const icons: LucideIcon[] = [TrendingUp, Clock, Award, Users];
const Icon = icons[index % icons.length]!;
return (
<MetricCard
key={proof.metric}
icon={Icon}
value={proof.value}
metric={proof.metric}
description={proof.description}
index={index}
accent={index === 0}
/>
);
})}
</div>
<motion.div
initial={{ opacity: 0, y: 24 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true, margin: '-60px' }}
transition={{ delay: 0.4, duration: 0.65 }}
className="mt-16 grid grid-cols-3 gap-8 max-w-3xl mx-auto"
>
<CircularProgress value={95} label="客户满意度" color="#3b82f6" />
<CircularProgress value={99} label="系统稳定性" color="#10b981" />
<CircularProgress value={98} label="交付准时率" color="#f59e0b" />
</motion.div>
</motion.div>
)}
</div>
</section>
);
+140 -31
View File
@@ -1,9 +1,11 @@
'use client';
import { motion, useInView } from 'framer-motion';
import { useRef, useEffect, useState } from 'react';
import { CaseStudyCard } from './detail-case-study';
import { DataProofGrid } from './detail-data-proof';
import { CertificationList } from './detail-certification';
import type { CaseStudy, DataProof, Certification } from '@/lib/constants/products';
import { DESIGN_SYSTEM } from '@/lib/constants/design-system';
interface DetailTrustSectionProps {
caseStudies?: CaseStudy[];
@@ -12,6 +14,53 @@ interface DetailTrustSectionProps {
accentColor?: string;
}
function AnimatedCounter({ value, duration = 2000 }: { value: string; duration?: number }) {
const [displayValue, setDisplayValue] = useState('0');
const ref = useRef<HTMLDivElement>(null);
const isInView = useInView(ref, { once: true });
useEffect(() => {
if (!isInView) return;
const numericValue = parseFloat(value.replace(/[^0-9.]/g, ''));
if (isNaN(numericValue)) {
setDisplayValue(value);
return;
}
const suffix = value.replace(/[0-9.]/g, '');
let startTime: number;
let animationFrame: number;
const animate = (currentTime: number) => {
if (!startTime) startTime = currentTime;
const progress = Math.min((currentTime - startTime) / duration, 1);
const easeOutQuart = 1 - Math.pow(1 - progress, 4);
const currentValue = numericValue * easeOutQuart;
setDisplayValue(
Number.isInteger(numericValue)
? Math.floor(currentValue).toString() + suffix
: currentValue.toFixed(1) + suffix
);
if (progress < 1) {
animationFrame = requestAnimationFrame(animate);
}
};
animationFrame = requestAnimationFrame(animate);
return () => cancelAnimationFrame(animationFrame);
}, [isInView, value, duration]);
return (
<div ref={ref} className="text-4xl md:text-5xl font-bold text-ink">
{displayValue}
</div>
);
}
export function DetailTrustSection({
caseStudies = [],
dataProofs = [],
@@ -22,48 +71,108 @@ export function DetailTrustSection({
if (!hasContent) return null;
return (
<section className="bg-gray-50 py-16 lg:py-20">
<div className="container-wide">
<section className="relative py-20 lg:py-28 bg-bg-secondary overflow-hidden">
<div className="absolute top-0 left-0 right-0 h-px bg-border-primary" />
<div className="absolute bottom-0 left-0 right-0 h-px bg-border-primary" />
<div className="container-wide relative">
{dataProofs.length > 0 && (
<div className="mb-12">
<h2 className="mb-2 text-center text-2xl font-bold text-gray-900">
</h2>
<p className="mx-auto mb-8 max-w-2xl text-center text-sm text-gray-500">
</p>
<DataProofGrid proofs={dataProofs} accentColor={accentColor} />
<div className="mb-20">
<motion.div
initial={{ opacity: 0, y: 24 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true, margin: '-80px' }}
transition={DESIGN_SYSTEM.effects.scroll.fadeInUp.transition}
className="text-center mb-12"
>
<span className="inline-block mb-3 text-sm font-semibold text-brand tracking-wider uppercase">
</span>
<h2 className={`${DESIGN_SYSTEM.typography.section.title} text-ink`}>
</h2>
<p className={`${DESIGN_SYSTEM.typography.section.subtitle} mt-3 max-w-xl mx-auto text-text-secondary`}>
使
</p>
</motion.div>
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6 max-w-5xl mx-auto">
{dataProofs.map((proof, index) => (
<motion.div
key={proof.metric}
initial={{ opacity: 0, y: 24 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true, margin: '-60px' }}
transition={{
...DESIGN_SYSTEM.effects.scroll.fadeInUp.transition,
delay: index * DESIGN_SYSTEM.animation.delay.stagger,
}}
whileHover={{
y: -8,
transition: { duration: 0.3 },
}}
className={`relative p-8 rounded-2xl border transition-all duration-300 ${
index === 0
? 'bg-brand-soft/50 border-brand/20'
: 'bg-white border-border-primary hover:border-border-secondary hover:shadow-md'
}`}
>
<AnimatedCounter value={proof.value} />
<p className="text-lg font-semibold text-ink mt-2">{proof.metric}</p>
<p className="text-sm text-text-muted mt-1 leading-relaxed">{proof.description}</p>
</motion.div>
))}
</div>
</div>
)}
{caseStudies.length > 0 && (
<div className="mb-12">
<h2 className="mb-2 text-center text-2xl font-bold text-gray-900">
</h2>
<p className="mx-auto mb-8 max-w-2xl text-center text-sm text-gray-500">
</p>
<div className="grid grid-cols-1 gap-6 md:grid-cols-2 lg:grid-cols-3">
<div className="mb-16">
<motion.div
initial={{ opacity: 0, y: 24 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true, margin: '-80px' }}
transition={DESIGN_SYSTEM.effects.scroll.fadeInUp.transition}
className="text-center mb-12"
>
<span className="inline-block mb-3 text-sm font-semibold tracking-wider uppercase" style={{ color: accentColor }}>
</span>
<h2 className={`${DESIGN_SYSTEM.typography.section.title} text-ink`}>
</h2>
</motion.div>
<div className="grid grid-cols-1 lg:grid-cols-3 gap-6">
{caseStudies.map((study, index) => (
<CaseStudyCard key={study.client} study={study} index={index} />
<motion.div
key={study.client}
initial={{ opacity: 0, y: 24 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true, margin: '-60px' }}
transition={{
...DESIGN_SYSTEM.effects.scroll.fadeInUp.transition,
delay: index * DESIGN_SYSTEM.animation.delay.stagger,
}}
>
<CaseStudyCard study={study} index={index} />
</motion.div>
))}
</div>
</div>
)}
{certifications.length > 0 && (
<div>
<h2 className="mb-2 text-center text-2xl font-bold text-gray-900">
</h2>
<p className="mx-auto mb-6 max-w-2xl text-center text-sm text-gray-500">
</p>
<div className="flex justify-center">
<CertificationList certifications={certifications} />
</div>
</div>
<motion.div
initial={{ opacity: 0, y: 24 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true, margin: '-80px' }}
transition={DESIGN_SYSTEM.effects.scroll.fadeInUp.transition}
className="text-center"
>
<h3 className="text-lg font-semibold text-text-secondary mb-6"></h3>
<CertificationList certifications={certifications} />
</motion.div>
)}
</div>
</section>
+22
View File
@@ -0,0 +1,22 @@
export { DetailHero } from './detail-hero';
export { ProductValueSection } from './detail-product-value';
export { DetailTrustSection } from './detail-trust-section';
export { DetailCTASection } from './detail-cta-section';
export { CaseStudyCard } from './detail-case-study';
export { CertificationList } from './detail-certification';
export { CrossRecommendGrid } from './detail-cross-recommend';
export { SolutionValueSection } from './solution-value';
export { ServiceValueSection } from './service-value';
export { ListPageHero } from './list-page-hero';
export { ProductCard } from './product-card';
export { SolutionCard } from './solution-service-card';
export { TiltCard, PressableButton, InkGlowCard, HoverLink } from './micro-interactions';
export { BrandSeal, CalligraphyText, InkDivider, SectionHeader } from './brand-elements';
+166
View File
@@ -0,0 +1,166 @@
'use client';
import { motion } from 'framer-motion';
import { useReducedMotion } from '@/hooks/use-reduced-motion';
interface ListPageHeroProps {
title: string;
subtitle: string;
description?: string;
stats?: Array<{ value: string; label: string }>;
badge?: {
text: string;
variant?: 'brand' | 'blue' | 'green' | 'neutral';
};
}
const BADGE_VARIANTS = {
brand: {
bg: 'var(--color-brand-bg)',
text: 'var(--color-brand)',
border: 'rgba(var(--color-brand-rgb), 0.15)',
dot: 'var(--color-brand)',
},
blue: {
bg: 'rgba(var(--color-accent-blue-rgb), 0.08)',
text: 'var(--color-accent-blue)',
border: 'rgba(var(--color-accent-blue-rgb), 0.15)',
dot: 'var(--color-accent-blue)',
},
green: {
bg: 'rgba(34, 197, 94, 0.08)',
text: '#16a34a',
border: 'rgba(34, 197, 94, 0.15)',
dot: '#22c55e',
},
neutral: {
bg: 'var(--color-bg-section)',
text: 'var(--color-text-secondary)',
border: 'var(--color-border-primary)',
dot: 'var(--color-text-subtle)',
},
};
export function ListPageHero({
title,
subtitle,
description,
stats,
badge,
}: ListPageHeroProps) {
const shouldReduceMotion = useReducedMotion();
const badgeStyle = BADGE_VARIANTS[badge?.variant || 'brand'];
return (
<section className="relative overflow-hidden">
{/* Multi-layer background */}
<div className="absolute inset-0 bg-gradient-to-br from-[var(--color-bg-section)] via-[var(--color-bg-secondary)] to-[var(--color-bg-section)]" />
<div className="absolute inset-0 bg-[radial-gradient(ellipse_at_top_right,_rgba(var(--color-brand-rgb),_0.05)_0%,_transparent_50%)]" />
<div className="absolute inset-0 bg-[radial-gradient(ellipse_at_bottom_left,_rgba(var(--color-brand-rgb),_0.03)_0%,_transparent_50%)]" />
{/* Subtle grid texture */}
<div
className="absolute inset-0 opacity-[0.03]"
style={{
backgroundImage:
'linear-gradient(rgba(var(--color-border-primary-rgb), 0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(var(--color-border-primary-rgb), 0.5) 1px, transparent 1px)',
backgroundSize: '60px 60px',
}}
aria-hidden="true"
/>
{/* Decorative accent line */}
<div className="absolute top-0 left-0 right-0 h-px" style={{ background: 'linear-gradient(90deg, transparent, var(--color-brand), transparent)' }} aria-hidden="true" />
<div className="container-wide relative z-10 py-20 lg:py-28">
<motion.div
initial={shouldReduceMotion ? {} : { opacity: 0, y: 20 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true }}
transition={{ duration: 0.6, ease: [0.16, 1, 0.3, 1] }}
className="max-w-4xl mx-auto text-center"
>
{/* Dynamic Badge */}
{badge && badge.text && (
<motion.div
initial={shouldReduceMotion ? {} : { opacity: 0, scale: 0.95, y: 8 }}
whileInView={{ opacity: 1, scale: 1, y: 0 }}
viewport={{ once: true }}
transition={{ delay: 0.1, duration: 0.5, ease: [0.16, 1, 0.3, 1] }}
className="inline-flex items-center gap-2 px-4 py-1.5 rounded-full text-sm font-medium mb-6 backdrop-blur-sm"
style={{ backgroundColor: badgeStyle.bg, color: badgeStyle.text, border: `1px solid ${badgeStyle.border}` }}
>
<span className="w-2 h-2 rounded-full animate-pulse" style={{ backgroundColor: badgeStyle.dot }} />
{badge?.text || ''}
</motion.div>
)}
{/* Title */}
<motion.h1
initial={shouldReduceMotion ? {} : { opacity: 0, y: 24 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true }}
transition={{ delay: 0.15, duration: 0.7, ease: [0.16, 1, 0.3, 1] }}
className="text-4xl md:text-5xl lg:text-6xl font-bold tracking-tight mb-6 text-[var(--color-text-primary)]"
>
{title}
</motion.h1>
{/* Subtitle */}
<motion.p
initial={shouldReduceMotion ? {} : { opacity: 0, y: 20 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true }}
transition={{ delay: 0.25, duration: 0.65, ease: [0.16, 1, 0.3, 1] }}
className="text-lg md:text-xl max-w-2xl mx-auto leading-relaxed mb-4 text-[var(--color-text-secondary)]"
>
{subtitle}
</motion.p>
{/* Description */}
{description && (
<motion.p
initial={shouldReduceMotion ? {} : { opacity: 0, y: 18 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true }}
transition={{ delay: 0.35, duration: 0.6, ease: [0.16, 1, 0.3, 1] }}
className="text-base max-w-xl mx-auto mb-10 text-[var(--color-text-muted)]"
>
{description}
</motion.p>
)}
{/* Stats Row */}
{stats && stats.length > 0 && (
<motion.div
initial={shouldReduceMotion ? {} : { opacity: 0, y: 24 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true }}
transition={{ delay: 0.4, duration: 0.7, ease: [0.16, 1, 0.3, 1] }}
className="flex flex-wrap justify-center gap-8 md:gap-12 mt-12 pt-12 border-t border-[var(--color-border-primary)]"
>
{stats.map((stat, index) => (
<motion.div
key={stat.label}
initial={shouldReduceMotion ? {} : { opacity: 0, scale: 0.95 }}
whileInView={{ opacity: 1, scale: 1 }}
viewport={{ once: true }}
transition={{ delay: 0.5 + index * 0.08, duration: 0.45, ease: [0.16, 1, 0.3, 1] }}
className="text-center min-w-[100px]"
>
<div className="text-3xl md:text-4xl font-bold tracking-tight text-[var(--color-text-primary)]">
{stat.value}
</div>
<div className="text-sm mt-1 text-[var(--color-text-subtle)]">{stat.label}</div>
</motion.div>
))}
</motion.div>
)}
</motion.div>
</div>
{/* Bottom fade */}
<div className="absolute bottom-0 left-0 right-0 h-20 bg-gradient-to-t from-[var(--color-bg-primary)] to-transparent pointer-events-none" aria-hidden="true" />
</section>
);
}
@@ -0,0 +1,261 @@
'use client';
import { motion, useMotionValue, useTransform, useSpring } from 'framer-motion';
import { useRef, ReactNode, useState, useCallback } from 'react';
import { ArrowUpRight } from 'lucide-react';
interface TiltCardProps {
children: ReactNode;
className?: string;
tiltAmount?: number;
glareEnable?: boolean;
glareMaxOpacity?: number;
scaleOnHover?: number;
}
export function TiltCard({
children,
className = '',
tiltAmount = 6,
glareEnable = true,
glareMaxOpacity = 0.06,
scaleOnHover = 1.01,
}: TiltCardProps) {
const ref = useRef<HTMLDivElement>(null);
const x = useMotionValue(0.5);
const y = useMotionValue(0.5);
const [isHovered, setIsHovered] = useState(false);
const rotateX = useSpring(useTransform(y, [0, 1], [tiltAmount, -tiltAmount]), {
stiffness: 280,
damping: 24,
mass: 0.8,
});
const rotateY = useSpring(useTransform(x, [0, 1], [-tiltAmount, tiltAmount]), {
stiffness: 280,
damping: 24,
mass: 0.8,
});
const scale = useSpring(isHovered ? scaleOnHover : 1, {
stiffness: 300,
damping: 28,
mass: 0.6,
});
const handleMouseMove = useCallback((e: React.MouseEvent<HTMLDivElement>) => {
if (!ref.current) return;
const rect = ref.current.getBoundingClientRect();
x.set((e.clientX - rect.left) / rect.width);
y.set((e.clientY - rect.top) / rect.height);
}, [x, y]);
const handleMouseEnter = useCallback(() => {
setIsHovered(true);
}, []);
const handleMouseLeave = useCallback(() => {
setIsHovered(false);
x.set(0.5);
y.set(0.5);
}, [x, y]);
const glareX = useTransform(x, [0, 1], ['0%', '100%']);
const glareY = useTransform(y, [0, 1], ['0%', '100%']);
const glareOpacity = useTransform(
y,
[0, 0.5, 1],
[glareMaxOpacity * 0.3, glareMaxOpacity, glareMaxOpacity * 0.2]
);
return (
<motion.div
ref={ref}
onMouseMove={handleMouseMove}
onMouseEnter={handleMouseEnter}
onMouseLeave={handleMouseLeave}
style={{
rotateX,
rotateY,
scale,
transformStyle: 'preserve-3d',
perspective: 1400,
}}
className={`relative will-change-transform ${className}`}
>
{children}
{glareEnable && (
<motion.div
className="pointer-events-none absolute inset-0 rounded-[inherit] overflow-hidden"
style={{
opacity: glareOpacity,
backgroundImage: `linear-gradient(
135deg,
rgba(255,255,255,0.6) 0%,
rgba(255,255,255,0.2) 40%,
transparent 60%
)`,
backgroundPositionX: glareX,
backgroundPositionY: glareY,
backgroundSize: '250% 250%',
mixBlendMode: 'overlay',
}}
/>
)}
</motion.div>
);
}
interface PressableButtonProps {
children: ReactNode;
className?: string;
onClick?: () => void;
variant?: 'primary' | 'secondary' | 'ghost';
href?: string;
}
export function PressableButton({
children,
className = '',
onClick,
variant = 'primary',
href,
}: PressableButtonProps) {
const baseStyles = {
primary:
'bg-brand text-white shadow-sm hover:shadow-brand-hover',
secondary:
'bg-white text-ink border border-border-primary hover:border-brand/30 hover:shadow-md',
ghost:
'bg-transparent text-brand hover:bg-brand/5',
};
const content = (
<motion.button
whileHover={{ y: -1 }}
whileTap={{ scale: 0.97, y: 0 }}
transition={{
type: 'spring',
stiffness: 400,
damping: 25,
}}
onClick={onClick}
className={`inline-flex items-center gap-2 px-6 py-3 font-semibold rounded-md transition-all duration-fast ease-standard ${baseStyles[variant]} ${className}`}
>
{children}
</motion.button>
);
if (href) {
return (
<a href={href} className="inline-block">
{content}
</a>
);
}
return content;
}
interface InkGlowCardProps {
children: ReactNode;
className?: string;
active?: boolean;
color?: string;
glowSize?: number;
}
export function InkGlowCard({ children, className = '', active = false, color = '#C41E3A', glowSize = 280 }: InkGlowCardProps) {
const [mousePos, setMousePos] = useState({ x: 0, y: 0 });
const [isHovered, setIsHovered] = useState(false);
const ref = useRef<HTMLDivElement>(null);
const handleMouseMove = useCallback((e: React.MouseEvent) => {
if (!ref.current) return;
const rect = ref.current.getBoundingClientRect();
setMousePos({
x: e.clientX - rect.left,
y: e.clientY - rect.top,
});
}, []);
const handleMouseEnter = useCallback(() => {
setIsHovered(true);
}, []);
const handleMouseLeave = useCallback(() => {
setIsHovered(false);
}, []);
return (
<motion.div
ref={ref}
onMouseMove={handleMouseMove}
onMouseEnter={handleMouseEnter}
onMouseLeave={handleMouseLeave}
whileHover={{
y: -2,
transition: {
duration: 0.25,
ease: [0.22, 1, 0.36, 1],
},
}}
className={`relative bg-white overflow-hidden transition-shadow duration-fast ease-standard ${active ? 'border border-brand/20' : 'border border-border-primary'} ${className}`}
style={{
borderRadius: 'var(--radius-lg)',
boxShadow: isHovered
? '0 4px 12px rgba(10, 14, 20, 0.06), 0 2px 4px rgba(10, 14, 20, 0.03)'
: '0 1px 3px rgba(10, 14, 20, 0.04), 0 1px 2px rgba(10, 14, 20, 0.02)',
}}
>
{active && (
<div className="absolute inset-0 bg-gradient-to-br from-brand/[0.03] to-transparent pointer-events-none" />
)}
<div
className="absolute inset-0 pointer-events-none transition-opacity duration-normal ease-ink"
style={{
opacity: isHovered ? 1 : 0,
background: `radial-gradient(${glowSize}px circle at ${mousePos.x}px ${mousePos.y}px, ${color}08, transparent 60%)`,
}}
/>
<div className="relative z-10">{children}</div>
</motion.div>
);
}
interface HoverLinkProps {
children: ReactNode;
href: string;
className?: string;
showArrow?: boolean;
color?: 'default' | 'brand';
}
export function HoverLink({
children,
href,
className = '',
showArrow = false,
color = 'default',
}: HoverLinkProps) {
return (
<a
href={href}
className={`group inline-flex items-center gap-1.5 font-medium transition-colors duration-fast ease-standard ${
color === 'brand' ? 'text-brand' : 'text-text-secondary hover:text-brand'
} ${className}`}
>
<span className="relative inline-block">
<span className="relative z-10">{children}</span>
<span
className="absolute bottom-0 left-0 w-full h-px origin-left scale-x-0 transition-transform duration-normal ease-standard group-hover:scale-x-100"
style={{
background: `linear-gradient(90deg, currentColor 0%, currentColor 100%)`,
}}
/>
</span>
{showArrow && (
<ArrowUpRight className="w-4 h-4 transition-all duration-fast ease-standard group-hover:translate-x-0.5 group-hover:-translate-y-0.5" />
)}
</a>
);
}
+86
View File
@@ -0,0 +1,86 @@
'use client';
import { motion } from 'framer-motion';
import Link from 'next/link';
import Image from 'next/image';
import { ArrowRight, CheckCircle2 } from 'lucide-react';
interface ProductCardProps {
product: {
id: string;
title: string;
description: string;
image: string;
category: string;
status: string;
features?: string[];
};
}
export function ProductCard({ product }: ProductCardProps) {
return (
<motion.div
initial={{ opacity: 0, y: 30 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true }}
transition={{
duration: 0.65,
ease: [0.22, 1, 0.36, 1] as const,
}}
className="group"
>
<Link href={`/products/${product.id}`} className="block">
<div className="relative h-full rounded-2xl bg-white border border-border-primary overflow-hidden hover:border-brand/30 hover:shadow-lg hover:-translate-y-1 transition-all duration-300">
<div className="aspect-video relative overflow-hidden bg-bg-secondary">
<Image
src={product.image}
alt={product.title}
fill
className="object-cover group-hover:scale-105 transition-transform duration-500"
/>
<div className="absolute top-4 left-4 flex gap-2">
<span className="px-3 py-1 rounded-full text-xs font-semibold bg-brand text-white shadow-md">
{product.category}
</span>
{product.status === '已发布' && (
<span className="px-3 py-1 rounded-full text-xs font-medium bg-green-500 text-white shadow-md flex items-center gap-1">
<CheckCircle2 className="w-3 h-3" />
</span>
)}
</div>
</div>
<div className="p-6">
<h3 className="text-xl font-bold text-ink mb-3 group-hover:text-brand transition-colors">
{product.title}
</h3>
<p className="text-sm text-text-muted leading-relaxed mb-5 line-clamp-2">
{product.description}
</p>
{product.features && product.features.length > 0 && (
<div className="flex flex-wrap gap-2 mb-5">
{product.features.slice(0, 3).map((feature) => (
<span
key={feature}
className="px-2.5 py-1 rounded-md text-xs font-medium bg-bg-secondary text-text-muted border border-border-primary"
>
{feature}
</span>
))}
</div>
)}
<div className="flex items-center gap-2 text-sm font-semibold text-brand group-hover:gap-3 transition-all">
<ArrowRight className="w-4 h-4" />
</div>
</div>
</div>
</Link>
</motion.div>
);
}
+189
View File
@@ -0,0 +1,189 @@
'use client';
import { motion } from 'framer-motion';
import {
CheckCircle2,
Zap,
Clock,
Users,
Award,
TrendingUp,
type LucideIcon,
} from 'lucide-react';
import { TiltCard, InkGlowCard } from './micro-interactions';
import { SectionHeader, InkDivider } from './brand-elements';
import type { Service } from '@/lib/constants/services';
interface ServiceValueSectionProps {
service: Service;
}
export function ServiceValueSection({ service }: ServiceValueSectionProps) {
const icons: LucideIcon[] = [Zap, Clock, Users, Award, TrendingUp];
return (
<section className="relative bg-white py-24 lg:py-32 overflow-hidden">
<div className="container-wide relative">
<SectionHeader
badge="专业服务"
title={`为什么选择我们的${service.title}`}
subtitle={service.overview}
icon={Zap}
/>
<div className="mt-16">
<div className="flex items-center gap-4 mb-8">
<div className="w-12 h-12 rounded-2xl bg-gradient-to-br from-[#C41E3A] to-[#99182d] flex items-center justify-center shadow-md shadow-brand/20">
<Zap className="w-6 h-6 text-white" />
</div>
<div>
<h3 className="text-2xl font-bold text-ink"></h3>
<p className="text-sm text-text-muted mt-0.5"></p>
</div>
</div>
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6">
{service.features.map((feature, index) => {
const Icon = icons[index % icons.length]!;
return (
<InkGlowCard
key={feature}
active={index === 0}
className="group p-6 hover:border-brand/20"
>
<motion.div
initial={{ opacity: 0, y: 20 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true }}
transition={{
delay: index * 0.08,
duration: 0.5,
ease: [0.22, 1, 0.36, 1] as const,
}}
>
<div className="flex items-start gap-4">
<div
className={`shrink-0 w-11 h-11 rounded-xl flex items-center justify-center transition-all duration-300 shadow-sm ${
index === 0
? 'bg-gradient-to-br from-[#C41E3A] to-[#99182d] text-white'
: 'bg-bg-secondary text-text-secondary group-hover:from-[#C41E3A] group-hover:to-[#99182d] group-hover:text-white'
}`}
>
<Icon className="w-5.5 h-5.5" />
</div>
<p className="text-sm font-medium text-text-secondary leading-relaxed pt-2">
{feature.split('')[1] || feature}
</p>
</div>
</motion.div>
</InkGlowCard>
);
})}
</div>
</div>
<motion.div
initial={{ opacity: 0, y: 32 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true, margin: '-80px' }}
transition={{ duration: 0.75, delay: 0.3 }}
className="mt-16"
>
<InkDivider variant="subtle" />
<div className="flex items-center gap-4 mb-8">
<div className="w-12 h-12 rounded-2xl bg-gradient-to-br from-green-500 to-emerald-600 flex items-center justify-center shadow-md shadow-green-500/20">
<Award className="w-6 h-6 text-white" />
</div>
<div>
<h3 className="text-2xl font-bold text-ink"></h3>
<p className="text-sm text-text-muted mt-0.5"></p>
</div>
</div>
<div className="grid grid-cols-1 md:grid-cols-2 gap-5">
{service.benefits.map((benefit, index) => (
<motion.div
key={index}
initial={{ opacity: 0, x: index % 2 === 0 ? -20 : 20 }}
whileInView={{ opacity: 1, x: 0 }}
viewport={{ once: true }}
transition={{
delay: 0.4 + index * 0.06,
duration: 0.5,
ease: [0.22, 1, 0.36, 1] as const,
}}
className="group p-6 rounded-2xl bg-bg-secondary border border-border-primary hover:border-brand/30 hover:shadow-md hover:-translate-y-1 transition-all duration-300"
>
<div className="flex items-start gap-3">
<CheckCircle2 className="w-5 h-5 text-green-600 mt-0.5 shrink-0 group-hover:scale-110 transition-transform" />
<p className="text-sm font-medium text-text-secondary leading-relaxed">{benefit}</p>
</div>
</motion.div>
))}
</div>
</motion.div>
{service.process && service.process.length > 0 && (
<motion.div
initial={{ opacity: 0, y: 32 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true, margin: '-80px' }}
transition={{ duration: 0.75, delay: 0.45 }}
className="mt-20"
>
<InkDivider variant="decorative" />
<div className="text-center mb-12">
<h3 className="text-2xl md:text-3xl font-bold tracking-tight text-ink">
</h3>
<p className="text-text-secondary mt-3"></p>
</div>
<div className="relative">
<div className="absolute left-8 top-0 bottom-0 w-0.5 bg-gradient-to-b from-[#C41E3A] via-blue-400 to-green-400 hidden md:block" />
<div className="space-y-6">
{service.process.map((step, index) => (
<motion.div
key={step}
initial={{ opacity: 0, x: -30 }}
whileInView={{ opacity: 1, x: 0 }}
viewport={{ once: true }}
transition={{
delay: 0.5 + index * 0.1,
duration: 0.55,
ease: [0.22, 1, 0.36, 1] as const,
}}
className="relative flex gap-6 group"
>
<div className="relative z-10 shrink-0">
<div className="w-16 h-16 rounded-full bg-white border-4 border-brand flex items-center justify-center shadow-md group-hover:scale-110 transition-transform duration-300">
<span className="text-lg font-bold text-brand">{String(index + 1).padStart(2, '0')}</span>
</div>
</div>
<TiltCard
tiltAmount={5}
glareEnable={false}
className="flex-1 p-6 rounded-2xl bg-white border border-border-primary hover:border-brand/30 hover:shadow-md transition-all"
>
<h4 className="font-bold text-ink mb-2">
{step.split('')[0]}
</h4>
<p className="text-sm text-text-secondary leading-relaxed">
{step.split('')[1] || step}
</p>
</TiltCard>
</motion.div>
))}
</div>
</div>
</motion.div>
)}
</div>
</section>
);
}
@@ -0,0 +1,162 @@
'use client';
import { motion } from 'framer-motion';
import Link from 'next/link';
import Image from 'next/image';
import { ArrowRight, Building2, Users, Cpu, Package } from 'lucide-react';
interface SolutionCardProps {
solution: {
id: string;
title: string;
industry: string;
description: string;
image?: string;
challenges?: string[];
suiteCombination?: {
primaryProducts: string[];
complementaryServices: string[];
rationale: string;
};
};
}
export function SolutionCard({ solution }: SolutionCardProps) {
const industryIcons = {
制造业: Building2,
零售: Users,
金融: Cpu,
政务: Building2,
};
const Icon = industryIcons[solution.industry as keyof typeof industryIcons] || Building2;
return (
<motion.div
initial={{ opacity: 0, y: 30 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true }}
transition={{
duration: 0.65,
ease: [0.22, 1, 0.36, 1] as const,
}}
className="group"
>
<Link href={`/solutions/${solution.id}`} className="block">
<div className="relative h-full rounded-2xl bg-white border border-border-primary overflow-hidden hover:border-brand/30 hover:shadow-lg hover:-translate-y-1 transition-all duration-300">
<div className="aspect-video relative overflow-hidden bg-bg-secondary flex items-center justify-center">
{solution.image ? (
<Image
src={solution.image}
alt={solution.title}
fill
className="object-cover group-hover:scale-105 transition-transform duration-500"
/>
) : (
<Icon className="w-16 h-16 text-brand/20 group-hover:text-brand/40 transition-colors" />
)}
<div className="absolute top-4 left-4 flex gap-2">
<span className="px-3 py-1 rounded-full text-xs font-semibold bg-brand text-white shadow-md inline-flex items-center gap-1.5">
<Icon className="w-3 h-3" />
{solution.industry}
</span>
{solution.suiteCombination && solution.suiteCombination.primaryProducts.length > 0 && (
<span className="px-3 py-1 rounded-full text-xs font-semibold bg-white/90 text-text-secondary shadow-md inline-flex items-center gap-1.5">
<Package className="w-3 h-3" />
{solution.suiteCombination.primaryProducts.length}
</span>
)}
</div>
</div>
<div className="p-6">
<h3 className="text-xl font-bold text-ink mb-3 group-hover:text-brand transition-colors">
{solution.title}
</h3>
<p className="text-sm text-text-muted leading-relaxed mb-5 line-clamp-2">
{solution.description}
</p>
{solution.challenges && solution.challenges.length > 0 && (
<div className="space-y-2 mb-5">
{solution.challenges.slice(0, 2).map((challenge) => (
<div key={challenge} className="flex items-start gap-2 text-sm text-text-muted">
<span className="w-1 h-1 rounded-full bg-brand mt-1.5 shrink-0" />
<span className="line-clamp-1">{challenge}</span>
</div>
))}
</div>
)}
<div className="flex items-center gap-2 text-sm font-semibold text-brand group-hover:gap-3 transition-all">
<ArrowRight className="w-4 h-4" />
</div>
</div>
</div>
</Link>
</motion.div>
);
}
interface ServiceCardProps {
service: {
id: string;
title: string;
description: string;
features?: string[];
};
}
export function ServiceCard({ service }: ServiceCardProps) {
return (
<motion.div
initial={{ opacity: 0, y: 30 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true }}
transition={{
duration: 0.65,
ease: [0.22, 1, 0.36, 1] as const,
}}
className="group"
>
<Link href={`/services/${service.id}`} className="block">
<div className="relative h-full rounded-2xl bg-bg-secondary border border-border-primary overflow-hidden hover:border-blue-300 hover:shadow-lg hover:-translate-y-1 transition-all duration-300">
<div className="p-8">
<div className="w-14 h-14 rounded-2xl bg-gradient-to-br from-[var(--color-accent-blue)] to-[#1d4ed8] flex items-center justify-center mb-5 shadow-md shadow-blue-500/20 group-hover:scale-110 transition-transform">
<Cpu className="w-7 h-7 text-white" />
</div>
<h3 className="text-xl font-bold text-ink mb-3 group-hover:text-blue-600 transition-colors">
{service.title}
</h3>
<p className="text-sm text-text-muted leading-relaxed mb-5 line-clamp-3">
{service.description}
</p>
{service.features && service.features.length > 0 && (
<div className="flex flex-wrap gap-2 mb-5">
{service.features.slice(0, 3).map((feature) => (
<span
key={feature}
className="px-2.5 py-1 rounded-md text-xs font-medium bg-white text-blue-600 border border-border-primary"
>
{feature.split('')[0]}
</span>
))}
</div>
)}
<div className="flex items-center gap-2 text-sm font-semibold text-blue-600 group-hover:gap-3 transition-all">
<ArrowRight className="w-4 h-4" />
</div>
</div>
</div>
</Link>
</motion.div>
);
}
+221
View File
@@ -0,0 +1,221 @@
'use client';
import { motion } from 'framer-motion';
import {
CheckCircle2,
Lightbulb,
Target,
TrendingUp,
} from 'lucide-react';
import { TiltCard } from './micro-interactions';
import { SectionHeader, InkDivider } from './brand-elements';
import type { Solution } from '@/lib/constants/solutions';
interface SolutionValueSectionProps {
solution: Solution;
}
export function SolutionValueSection({ solution }: SolutionValueSectionProps) {
return (
<section className="relative bg-white py-24 lg:py-32 overflow-hidden">
<div className="container-wide relative">
<SectionHeader
badge="解决方案"
title={
<>
<span className="text-brand">{solution.industry}</span>
</>
}
subtitle={solution.description}
icon={Lightbulb}
/>
<div className="grid grid-cols-1 lg:grid-cols-2 gap-10 mt-16">
<motion.div
initial={{ opacity: 0, x: -30 }}
whileInView={{ opacity: 1, x: 0 }}
viewport={{ once: true, margin: '-80px' }}
transition={{ duration: 0.7, ease: [0.22, 1, 0.36, 1] as const }}
>
<div className="bg-brand-soft/30 rounded-2xl p-8 border border-brand/20">
<h3 className="text-xl font-bold text-ink mb-6 flex items-center gap-3">
<span className="w-10 h-10 rounded-xl bg-brand flex items-center justify-center">
<Target className="w-5 h-5 text-white" />
</span>
</h3>
<ul className="space-y-4">
{solution.challenges.map((challenge, index) => (
<motion.li
key={index}
initial={{ opacity: 0, y: 15 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true }}
transition={{
delay: index * 0.08,
duration: 0.45,
ease: [0.22, 1, 0.36, 1] as const,
}}
className="flex items-start gap-3 text-text-secondary"
>
<span className="w-1.5 h-1.5 rounded-full bg-brand mt-2 shrink-0" />
<span className="text-sm leading-relaxed">{challenge}</span>
</motion.li>
))}
</ul>
</div>
</motion.div>
<motion.div
initial={{ opacity: 0, x: 30 }}
whileInView={{ opacity: 1, x: 0 }}
viewport={{ once: true, margin: '-80px' }}
transition={{ duration: 0.7, delay: 0.15, ease: [0.22, 1, 0.36, 1] as const }}
>
<div className="bg-blue-50/50 rounded-2xl p-8 border border-blue-100/60">
<h3 className="text-xl font-bold text-ink mb-6 flex items-center gap-3">
<span className="w-10 h-10 rounded-xl bg-blue-600 flex items-center justify-center">
<Lightbulb className="w-5 h-5 text-white" />
</span>
</h3>
<ul className="space-y-4">
{solution.solutions.map((solutionItem, index) => (
<motion.li
key={index}
initial={{ opacity: 0, y: 15 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true }}
transition={{
delay: 0.25 + index * 0.08,
duration: 0.45,
ease: [0.22, 1, 0.36, 1] as const,
}}
className="flex items-start gap-3 text-text-secondary"
>
<CheckCircle2 className="w-4.5 h-4.5 text-blue-600 mt-0.5 shrink-0" />
<span className="text-sm leading-relaxed">{solutionItem}</span>
</motion.li>
))}
</ul>
</div>
</motion.div>
</div>
{solution.valueProposition && (
<motion.div
initial={{ opacity: 0, y: 32 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true, margin: '-80px' }}
transition={{ duration: 0.75, delay: 0.3 }}
className="mt-20"
>
<InkDivider variant="decorative" />
<div className="text-center mb-12">
<h3 className="text-2xl md:text-3xl font-bold tracking-tight text-ink">
{solution.valueProposition.headline}
</h3>
</div>
<div className="grid grid-cols-1 md:grid-cols-3 gap-7">
{solution.valueProposition.points.map((point, index) => (
<TiltCard
key={index}
tiltAmount={6}
className="p-7 rounded-2xl bg-white border border-border-primary hover:border-blue-200 hover:shadow-md transition-shadow"
>
<div className="w-14 h-14 rounded-2xl bg-gradient-to-br from-blue-500 to-indigo-600 flex items-center justify-center mb-5 shadow-md shadow-blue-500/20">
<TrendingUp className="w-7 h-7 text-white" />
</div>
<h4 className="text-lg font-bold text-ink mb-2">{point.title}</h4>
<p className="text-sm text-text-secondary leading-relaxed">{point.description}</p>
</TiltCard>
))}
</div>
</motion.div>
)}
{solution.suiteCombination && (
<motion.div
initial={{ opacity: 0, y: 32 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true, margin: '-80px' }}
transition={{ duration: 0.75, delay: 0.4 }}
className="mt-20"
>
<InkDivider variant="subtle" />
<div className="bg-bg-secondary rounded-2xl p-10 border border-border-primary">
<div className="grid grid-cols-1 lg:grid-cols-2 gap-10">
<div>
<h4 className="text-lg font-bold text-ink mb-5 flex items-center gap-2.5">
<span className="w-8 h-8 rounded-lg bg-brand flex items-center justify-center">
<span className="text-white text-xs font-bold"></span>
</span>
</h4>
<div className="flex flex-wrap gap-3">
{solution.suiteCombination.primaryProducts.map((product, index) => (
<motion.span
key={product}
initial={{ opacity: 0, scale: 0.9 }}
whileInView={{ opacity: 1, scale: 1 }}
viewport={{ once: true }}
transition={{
delay: 0.5 + index * 0.06,
duration: 0.35,
}}
className="px-5 py-2.5 bg-brand-soft/50 text-brand text-sm font-semibold rounded-xl border border-brand/20"
>
{product}
</motion.span>
))}
</div>
</div>
<div>
<h4 className="text-lg font-bold text-ink mb-5 flex items-center gap-2.5">
<span className="w-8 h-8 rounded-lg bg-blue-600 flex items-center justify-center">
<span className="text-white text-xs font-bold"></span>
</span>
</h4>
<div className="flex flex-wrap gap-3">
{solution.suiteCombination.complementaryServices.map((service, index) => (
<motion.span
key={service}
initial={{ opacity: 0, scale: 0.9 }}
whileInView={{ opacity: 1, scale: 1 }}
viewport={{ once: true }}
transition={{
delay: 0.65 + index * 0.06,
duration: 0.35,
}}
className="px-5 py-2.5 bg-blue-50/80 text-blue-700 text-sm font-semibold rounded-xl border border-blue-200"
>
{service}
</motion.span>
))}
</div>
</div>
</div>
<motion.p
initial={{ opacity: 0 }}
whileInView={{ opacity: 1 }}
viewport={{ once: true }}
transition={{ delay: 0.85, duration: 0.55 }}
className="mt-8 p-5 bg-white rounded-xl text-sm text-text-secondary leading-relaxed border border-border-primary"
>
<strong className="text-ink"></strong>{solution.suiteCombination.rationale}
</motion.p>
</div>
</motion.div>
)}
</div>
</section>
);
}