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

.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #d946ef, #06b6d4);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    z-index: 9999;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 10px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

:focus-visible {
    outline: 2px solid #06b6d4;
    outline-offset: 2px;
    border-radius: 4px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.3);
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 50%, #16213e 100%);
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

.gradient-text {
    background: linear-gradient(90deg, #d946ef, #06b6d4, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-primary {
    background: linear-gradient(135deg, #d946ef 0%, #06b6d4 50%, #ec4899 100%);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(217, 70, 239, 0.5);
}

.btn-primary.btn-full {
    width: 100%;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(6, 182, 212, 0.5);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.15), rgba(6, 182, 212, 0.15));
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 50px;
    color: #06b6d4;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.section-badge i {
    font-size: 12px;
}

.section-title {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: #d1d5db;
    margin-bottom: 12px;
    font-weight: 500;
}

.section-desc {
    font-size: 16px;
    color: #9ca3af;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.section-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9ca3af;
    font-size: 14px;
}

.section-stat strong {
    color: #06b6d4;
    font-size: 20px;
    font-weight: 700;
}

.section-stat i {
    color: #d946ef;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #d946ef, #06b6d4);
    border-radius: 2px;
    margin: 0 auto 24px;
}

section {
    padding: 100px 0;
    position: relative;
}

section:nth-child(even) {
    background: linear-gradient(180deg, rgba(6, 182, 212, 0.02) 0%, transparent 50%);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    transition: padding 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    background: transparent;
    will-change: padding, background-color;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(26, 26, 46, 0.85);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: grid;
    grid-template-columns: 1fr auto auto 1fr;
    align-items: center;
    gap: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-self: start;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-self: end;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #d946ef, #06b6d4, #ec4899);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
    justify-self: center;
    position: relative;
}

.nav-links a {
    color: #9ca3af;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
    padding: 10px 0;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a.active {
    color: #fff;
}

.nav-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d946ef, #06b6d4);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(217, 70, 239, 0.5);
    opacity: 0;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1), width 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    pointer-events: none;
}

.nav-indicator.visible {
    opacity: 1;
}

@keyframes underline-glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(217, 70, 239, 0.5),
                    0 0 10px rgba(6, 182, 212, 0.3);
    }
    50% {
        box-shadow: 0 0 10px rgba(217, 70, 239, 0.8),
                    0 0 20px rgba(6, 182, 212, 0.5);
    }
}

.get-quote {
    background: linear-gradient(135deg, #d946ef, #06b6d4, #ec4899);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.get-quote:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(217, 70, 239, 0.3);
}

.theme-toggle {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: #9ca3af;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: rotate(180deg);
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 16px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    color: #9ca3af;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    justify-self: start;
}

.lang-toggle:hover {
    border-color: rgba(217, 70, 239, 0.5);
    color: #fff;
    background: rgba(217, 70, 239, 0.08);
}

.lang-toggle i {
    font-size: 13px;
    transition: transform 0.25s ease;
}

.lang-toggle:hover i {
    transform: rotate(15deg);
}

[data-theme="light"] .lang-toggle {
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: #64748b;
}

[data-theme="light"] .lang-toggle:hover {
    border-color: rgba(217, 70, 239, 0.5);
    color: #1e293b;
    background: rgba(217, 70, 239, 0.06);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    animation: blob-float 15s ease-in-out infinite;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #d946ef, #8b5cf6);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    bottom: -150px;
    right: -150px;
    animation-delay: -5s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ec4899, #f43f5e);
    top: 40%;
    left: 60%;
    animation-delay: -10s;
}

@keyframes blob-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #06b6d4;
    border-radius: 50%;
    left: var(--x);
    top: var(--y);
    animation: particle-float 6s ease-in-out infinite;
    animation-delay: var(--delay);
    opacity: 0.6;
}

@keyframes particle-float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
    50% { transform: translateY(-20px) scale(1.5); opacity: 0.8; }
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(6, 182, 212, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6, 182, 212, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at center, transparent 0%, rgba(0,0,0,0.4) 60%, black 100%);
    mask-image: radial-gradient(ellipse 80% 60% at center, transparent 0%, rgba(0,0,0,0.4) 60%, black 100%);
}

@keyframes grid-move {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.15), rgba(6, 182, 212, 0.15));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 50px;
    font-size: 13px;
    color: #06b6d4;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.15;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title-line {
    display: block;
    animation: title-slide-in 0.8s ease-out;
}

.hero-title-gradient {
    display: block;
    font-size: 68px;
    background: linear-gradient(90deg, #d946ef, #06b6d4, #ec4899, #d946ef);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite, title-slide-in 0.8s ease-out 0.2s backwards;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes title-slide-in {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-title-decoration {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #d946ef, #06b6d4, transparent);
    border-radius: 2px;
    margin-top: 16px;
    animation: decoration-grow 1s ease-out 0.5s backwards;
}

@keyframes decoration-grow {
    from { width: 0; opacity: 0; }
    to { width: 80px; opacity: 1; }
}

.hero p {
    color: #9ca3af;
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #d946ef, #06b6d4);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

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

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(217, 70, 239, 0.3);
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.stat-number {
    display: block;
    font-size: 40px;
    font-weight: 700;
    background: linear-gradient(90deg, #d946ef, #06b6d4, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: #9ca3af;
}

.hero-platforms {
    margin-top: 40px;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 1.2s forwards;
}

.hero-platforms-label {
    display: block;
    font-size: 12px;
    color: #6b7280;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-platforms-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.hero-platforms-list i {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    animation: platform-float 4s ease-in-out infinite;
}

.hero-platforms-list i:nth-child(odd) {
    animation-delay: 1.5s;
}

.hero-platforms-list i:hover {
    color: #06b6d4;
    transform: scale(1.2);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #d946ef, #06b6d4);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle-2 {
    width: 30px;
    height: 30px;
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.particle-3 {
    width: 15px;
    height: 15px;
    bottom: 30%;
    left: 10%;
    animation-delay: 4s;
}

.bg-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.trusted-by {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trusted-title {
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.client-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.client-logo:hover {
    opacity: 1;
    color: #fff;
    transform: translateY(-3px);
}

.client-logo i {
    font-size: 32px;
}

.client-logo span {
    font-size: 12px;
    font-weight: 500;
}

.trusted-by-inline {
    margin: 50px 0;
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.trusted-by-inline .trusted-title {
    margin-bottom: 25px;
    font-size: 13px;
}

.trusted-by-inline .client-logos {
    gap: 50px;
}

.trusted-by-inline .client-logo {
    gap: 6px;
}

.trusted-by-inline .client-logo i {
    font-size: 28px;
}

.trusted-by-inline .client-logo span {
    font-size: 12px;
}

.platforms {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(6, 182, 212, 0.03) 0%, transparent 100%);
}

.platforms-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 50px;
    margin-bottom: 40px;
}

.platform-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

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

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

.platform-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(6, 182, 212, 0.2);
}

.platform-card.main {
    border: 2px solid transparent;
    background: linear-gradient(#1a1a2e, #1a1a2e) padding-box,
                linear-gradient(135deg, rgba(217, 70, 239, 0.5), rgba(6, 182, 212, 0.5)) border-box;
    padding: 40px 25px;
}

.platform-card.main:hover {
    box-shadow: 0 30px 60px rgba(217, 70, 239, 0.3),
                0 0 40px rgba(6, 182, 212, 0.2);
}

.platform-card.main:hover .platform-icon {
    animation: icon-shine 0.6s ease;
}

@keyframes icon-shine {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.platform-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
    color: #fff;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.platform-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(217, 70, 239, 0.6) 60deg,
        transparent 120deg,
        rgba(6, 182, 212, 0.6) 180deg,
        transparent 240deg,
        rgba(217, 70, 239, 0.4) 300deg,
        transparent 360deg
    );
    z-index: -1;
    animation: halo-spin 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.platform-icon::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: conic-gradient(
        from 180deg,
        transparent 0deg,
        rgba(6, 182, 212, 0.5) 90deg,
        transparent 180deg,
        rgba(217, 70, 239, 0.5) 270deg,
        transparent 360deg
    );
    z-index: -1;
    animation: halo-spin-reverse 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes halo-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes halo-spin-reverse {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}

.platform-card .platform-icon::before,
.platform-card .platform-icon::after {
    opacity: 0.6;
}

.platform-card:hover .platform-icon::before {
    animation-duration: 1.5s;
    opacity: 1;
}

.platform-card:hover .platform-icon::after {
    animation-duration: 1s;
    opacity: 1;
}

.platform-icon.tiktok {
    background: linear-gradient(135deg, #00f2ea, #ff0050);
}

.platform-icon.meta {
    background: linear-gradient(135deg, #1877f2, #00c6ff);
}

.platform-icon.google {
    background: conic-gradient(#4285f4 0deg 90deg, #34a853 90deg 180deg, #fbbc05 180deg 270deg, #ea4335 270deg 360deg);
}

.platform-icon.x {
    background: linear-gradient(135deg, #000000, #333333);
}

.platform-card:hover .platform-icon {
    transform: rotate(5deg) scale(1.1);
}

.platform-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #fff;
}

.platform-tag {
    display: inline-block;
    background: linear-gradient(135deg, #d946ef, #06b6d4);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 8px;
}

.platform-sub {
    display: block;
    font-size: 12px;
    color: #9ca3af;
}

.platform-desc {
    font-size: 13px;
    color: #9ca3af;
    margin-top: 12px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.platform-stats {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.platform-stats span {
    font-size: 12px;
    color: #06b6d4;
    display: flex;
    align-items: center;
    gap: 5px;
}

.platform-stats i {
    font-size: 10px;
}

.platform-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.platform-tags span {
    font-size: 11px;
    color: #6b7280;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.platform-card:hover .platform-tags span {
    background: rgba(6, 182, 212, 0.15);
    color: #06b6d4;
}

.platforms-more {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.platform-mini {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    color: #d1d5db;
    position: relative;
    cursor: pointer;
}

.platform-mini::after {
    content: attr(data-name);
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    background: #fff;
    color: #1a1a2e;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.platform-mini::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 11;
}

.platform-mini:hover {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.1), rgba(6, 182, 212, 0.1));
    border-color: rgba(217, 70, 239, 0.4);
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
}

.platform-mini:hover::after,
.platform-mini:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
}

.platform-mini:hover i {
    transform: scale(1.2) rotate(5deg);
}

.platform-mini i {
    font-size: 18px;
    color: #06b6d4;
    transition: all 0.3s ease;
}

.platform-logo-img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.platform-mini:hover .platform-logo-img {
    transform: scale(1.2);
}

.industries {
    padding: 100px 0;
}

.industries-scroll {
    position: relative;
    width: 100%;
    margin: 50px 0;
    overflow: hidden;
}

.industry-category {
    margin-bottom: 30px;
}

.industry-category:last-child {
    margin-bottom: 0;
}

.category-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.15), rgba(6, 182, 212, 0.15));
    border: 1px solid rgba(217, 70, 239, 0.3);
    border-radius: 20px;
    padding: 8px 18px;
    margin-bottom: 15px;
    margin-left: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.category-label-right {
    margin-left: 0;
    margin-right: 10px;
    float: right;
}

.category-label i {
    color: #06b6d4;
    font-size: 16px;
}

.scroll-row {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 120px, #000 calc(100% - 120px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 120px, #000 calc(100% - 120px), transparent 100%);
}

.scroll-track {
    display: flex;
    gap: 20px;
    animation: scrollLeft 40s linear infinite;
    width: max-content;
}

.scroll-track-reverse {
    animation: scrollRight 45s linear infinite;
}

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

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

.industries-scroll:hover .scroll-track {
    animation-play-state: paused;
}

.industry-card {
    flex-shrink: 0;
    width: 200px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(217, 70, 239, 0.5), rgba(6, 182, 212, 0.5), transparent);
    opacity: 0.6;
}

.industry-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transition: left 0.6s ease;
}

.industry-card:hover::after {
    left: 100%;
}

.industry-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(217, 70, 239, 0.5);
    box-shadow: 
        0 15px 40px rgba(217, 70, 239, 0.2),
        0 0 20px rgba(6, 182, 212, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.industry-card .industry-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.2), rgba(6, 182, 212, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.2);
    position: relative;
    z-index: 1;
}

.industry-card .industry-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 14px;
    background: linear-gradient(135deg, #d946ef, #06b6d4);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.industry-card:hover .industry-icon::before {
    opacity: 1;
}

.industry-card:hover .industry-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
}

.industry-card .industry-info {
    flex: 1;
    min-width: 0;
    z-index: 1;
}

.industry-card .industry-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.industry-card .industry-info p {
    font-size: 11px;
    color: #9ca3af;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.note-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.15), rgba(6, 182, 212, 0.15));
    border: 1px solid rgba(217, 70, 239, 0.3);
    border-radius: 30px;
    padding: 15px 30px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    animation: pulse 2s ease-in-out infinite;
}

.note-badge i {
    color: #d946ef;
    font-size: 18px;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(217, 70, 239, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(217, 70, 239, 0);
    }
}

.methodology {
    padding: 100px 0;
}

.methodology-flow {
    margin-top: 60px;
}

.flow-track {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0 40px;
}

.flow-line {
    position: absolute;
    top: 40px;
    left: 80px;
    right: 80px;
    height: 3px;
    background: linear-gradient(90deg,
        rgba(217, 70, 239, 0.1) 0%,
        rgba(217, 70, 239, 0.4) 25%,
        rgba(6, 182, 212, 0.4) 75%,
        rgba(6, 182, 212, 0.1) 100%);
    border-radius: 2px;
    overflow: hidden;
}

.flow-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -30%;
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: flowSlide 3s ease-in-out infinite;
}

@keyframes flowSlide {
    0% { left: -30%; }
    100% { left: 100%; }
}

.flow-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 220px;
}

.flow-node {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #0f172a;
    border: 2px solid transparent;
    background-clip: padding-box;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #06b6d4;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 0 0 4px rgba(15, 23, 42, 1);
}

.flow-node::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d946ef, #06b6d4);
    z-index: -1;
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.flow-step:hover .flow-node {
    transform: scale(1.1);
    color: #fff;
}

.flow-step:hover .flow-node::before {
    opacity: 1;
}

.flow-num {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #d946ef, #06b6d4);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #0f172a;
}

.flow-info {
    text-align: center;
    margin-top: 24px;
    padding: 0 10px;
}

.flow-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.flow-info p {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.7;
}

.flow-loop-back {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.loop-back-line {
    flex: 1;
    max-width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(217, 70, 239, 0.4), transparent);
}

.loop-back-text {
    font-size: 14px;
    color: #9ca3af;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.loop-back-text i {
    color: #d946ef;
    font-size: 16px;
    animation: loopSpin 4s linear infinite;
}

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

@media (max-width: 1024px) {
    .flow-track {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 0 20px;
    }
    .flow-line {
        display: none;
    }
    .flow-step {
        flex-direction: row;
        align-items: center;
        max-width: 500px;
        width: 100%;
        gap: 20px;
    }
    .flow-info {
        text-align: left;
        margin-top: 0;
        flex: 1;
    }
    .flow-step::before {
        content: '';
        position: absolute;
        left: 40px;
        top: 80px;
        bottom: -30px;
        width: 2px;
        background: linear-gradient(180deg, rgba(217, 70, 239, 0.3), rgba(6, 182, 212, 0.3));
    }
    .flow-step:last-child::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .flow-step {
        flex-direction: column;
        text-align: center;
    }
    .flow-info {
        text-align: center;
    }
    .flow-step::before {
        left: 50%;
        transform: translateX(-50%);
    }
    .loop-back-line {
        max-width: 60px;
    }
}

.case-stats {
    display: flex;
    gap: 20px;
    margin: 15px 0;
}

.case-stat {
    text-align: center;
    flex: 1;
}

.case-stat-number {
    display: block;
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(90deg, #d946ef, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.case-stat-label {
    display: block;
    font-size: 11px;
    color: #9ca3af;
    margin-top: 2px;
}

.case-testimonial {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.case-testimonial .fa-quote-left {
    color: rgba(6, 182, 212, 0.3);
    font-size: 16px;
    margin-bottom: 8px;
}

.case-testimonial p {
    font-size: 12px;
    color: #9ca3af;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 8px;
}

.testimonial-author {
    font-size: 11px;
    color: #06b6d4;
    font-weight: 500;
}

.faq {
    padding: 100px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 60px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 15px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(217, 70, 239, 0.4), rgba(6, 182, 212, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item:hover::before,
.faq-item.active::before {
    opacity: 1;
}

.faq-item:hover {
    border-color: rgba(6, 182, 212, 0.3);
}

.faq-item.active {
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #06b6d4;
}

.faq-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.15), rgba(6, 182, 212, 0.15));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #06b6d4;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.3), rgba(6, 182, 212, 0.3));
    transform: scale(1.1);
}

.faq-text {
    flex: 1;
}

.faq-question .faq-arrow {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #06b6d4;
    font-size: 14px;
}

.faq-question[aria-expanded="true"] .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

.faq-answer p {
    padding: 0 25px 20px 76px;
    color: #9ca3af;
    line-height: 1.8;
    font-size: 15px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.1), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(217, 70, 239, 0.2);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(217, 70, 239, 0.6), rgba(6, 182, 212, 0.6), transparent);
}

.faq-cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.faq-cta-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.2), rgba(6, 182, 212, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #06b6d4;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

.faq-cta-text {
    text-align: left;
    flex: 1;
    min-width: 200px;
}

.faq-cta-text h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #fff;
}

.faq-cta-text p {
    color: #9ca3af;
    margin: 0;
    font-size: 14px;
}

.faq-cta-btn {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 14px;
        padding: 16px 18px;
        gap: 10px;
    }

    .faq-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .faq-answer p {
        padding: 0 18px 16px 60px;
        font-size: 14px;
    }

    .faq-cta {
        padding: 30px 20px;
    }

    .faq-cta-content {
        flex-direction: column;
        text-align: center;
    }

    .faq-cta-text {
        text-align: center;
    }

    .faq-cta-text h3 {
        font-size: 18px;
    }
}

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

.blur-1 {
    width: 400px;
    height: 400px;
    background: #d946ef;
    top: -100px;
    left: -100px;
    animation: pulse 4s ease-in-out infinite;
}

.blur-2 {
    width: 500px;
    height: 500px;
    background: #06b6d4;
    bottom: -150px;
    right: -100px;
    animation: pulse 4s ease-in-out infinite;
    animation-delay: 2s;
}

.blur-3 {
    width: 350px;
    height: 350px;
    background: #ec4899;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
    animation-delay: 1s;
}

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

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

.services {
    padding: 100px 0;
}

.services h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
}

.section-desc {
    color: #9ca3af;
    font-size: 16px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.services-grid .service-card {
    grid-column: span 2;
}

.services-grid .service-card:nth-last-child(-n+2) {
    grid-column: span 3;
    border-color: rgba(217, 70, 239, 0.25);
    background: linear-gradient(145deg, rgba(217, 70, 239, 0.06), rgba(6, 182, 212, 0.06));
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid .service-card,
    .services-grid .service-card:nth-last-child(-n+2) {
        grid-column: span 1;
    }
}

.service-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px 30px 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

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

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

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 
        0 30px 60px rgba(6, 182, 212, 0.2),
        0 0 0 1px rgba(6, 182, 212, 0.1) inset,
        0 0 40px rgba(217, 70, 239, 0.1);
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 1;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.service-badge.hot i {
    color: #ff6b6b;
    filter: drop-shadow(0 0 5px rgba(255, 75, 43, 0.5));
    animation: badge-flicker 2.5s ease-in-out infinite;
}

.service-badge.recommend i {
    color: #06b6d4;
    filter: drop-shadow(0 0 5px rgba(6, 182, 212, 0.5));
    animation: badge-twinkle 2s ease-in-out infinite;
}

.service-badge.special i {
    color: #f5a623;
    filter: drop-shadow(0 0 5px rgba(245, 166, 35, 0.5));
    animation: badge-shine 3s ease-in-out infinite;
}

.service-badge.pro i {
    color: #8b5cf6;
    filter: drop-shadow(0 0 5px rgba(139, 92, 246, 0.5));
    animation: badge-glow 2.5s ease-in-out infinite;
}

.service-badge.vip i {
    color: #e85ca6;
    filter: drop-shadow(0 0 5px rgba(232, 92, 166, 0.5));
    animation: badge-float 3s ease-in-out infinite;
}

@keyframes badge-flicker {
    0%, 100% { opacity: 1; transform: scale(1); }
    25% { opacity: 0.65; transform: scale(0.88); }
    50% { opacity: 1; transform: scale(1.08); }
    75% { opacity: 0.8; transform: scale(0.95); }
}

@keyframes badge-twinkle {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.5; transform: scale(1.18) rotate(72deg); }
}

@keyframes badge-shine {
    0%, 100% { opacity: 0.85; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.12); }
}

@keyframes badge-glow {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

@keyframes badge-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-3px) scale(1.05); }
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.2), rgba(6, 182, 212, 0.2));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #06b6d4;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.3), rgba(6, 182, 212, 0.3));
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-card p {
    color: #9ca3af;
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-platforms {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.service-platforms i {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 14px;
    color: #9ca3af;
    transition: all 0.3s;
}

.service-card:hover .service-platforms i {
    color: #06b6d4;
    background: rgba(6, 182, 212, 0.15);
    transform: translateY(-3px);
}

.service-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(217, 70, 239, 0.15));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: #a78bfa;
    margin-bottom: 16px;
}

.service-tag i {
    font-size: 11px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.service-features span {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    font-size: 12px;
    color: #9ca3af;
    transition: all 0.3s;
}

.service-card:hover .service-features span {
    background: rgba(6, 182, 212, 0.15);
    color: #06b6d4;
}

.service-cta {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 25px;
    background: linear-gradient(90deg, rgba(217, 70, 239, 0.1), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 25px;
    color: #06b6d4;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background: linear-gradient(90deg, #d946ef, #06b6d4);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
}

.pain-points {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
}

.pain-diagnosis {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.diagnosis-row {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.diagnosis-row:hover {
    border-color: rgba(217, 70, 239, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.diagnosis-row:hover .diagnosis-arrow i {
    transform: translateX(4px);
    color: #06b6d4;
}

.diagnosis-problem {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-left: 4px solid rgba(239, 68, 68, 0.5);
}

.diagnosis-problem i {
    font-size: 22px;
    color: #fca5a5;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.12);
    border-radius: 10px;
}

.diagnosis-text h3 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.diagnosis-text p {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.5;
}

.diagnosis-arrow {
    flex-shrink: 0;
    padding: 0 20px;
    color: rgba(255, 255, 255, 0.2);
    font-size: 18px;
    transition: all 0.3s ease;
}

.diagnosis-arrow i {
    transition: all 0.3s ease;
}

.diagnosis-solution {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    border-right: 4px solid rgba(34, 197, 94, 0.5);
}

.diagnosis-solution i {
    font-size: 18px;
    color: #4ade80;
    flex-shrink: 0;
}

.diagnosis-solution span {
    font-size: 14px;
    color: #4ade80;
    font-weight: 500;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .diagnosis-row {
        flex-direction: column;
        align-items: stretch;
    }
    .diagnosis-arrow {
        padding: 8px 0;
        transform: rotate(90deg);
    }
    .diagnosis-problem,
    .diagnosis-solution {
        border-left: none;
        border-right: none;
        border-top: 4px solid rgba(239, 68, 68, 0.5);
        border-bottom: 4px solid rgba(34, 197, 94, 0.5);
    }
    .diagnosis-solution {
        border-top: none;
    }
}

.pain-cta {
    text-align: center;
}

[data-theme="light"] .diagnosis-row {
    background: #ffffff;
    border-color: #e2e8f0;
}

[data-theme="light"] .diagnosis-row:hover {
    border-color: rgba(217, 70, 239, 0.3);
    background: #fafafa;
}

[data-theme="light"] .diagnosis-text h3 {
    color: #1e293b;
}

[data-theme="light"] .diagnosis-text p {
    color: #64748b;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.platform-card.main.animate-on-scroll {
    opacity: 0;
    transform: translateY(60px) scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.platform-card.main.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.platform-card.main.animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.platform-card.main.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.platform-card.main.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.platform-card.main.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }

@keyframes slideUpOverlay {
    0% {
        opacity: 0;
        transform: translateY(100%) scale(0.95);
        clip-path: inset(100% 0 0 0);
    }
    60% {
        opacity: 1;
        transform: translateY(0) scale(1);
        clip-path: inset(0 0 0 0);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        clip-path: inset(0 0 0 0);
    }
}

@keyframes slideUpOverlayReveal {
    0% {
        opacity: 0;
        transform: translateY(80px);
        clip-path: inset(30% 0 30% 0);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
        filter: blur(0);
    }
}

@keyframes slideUpOverlayStagger {
    0% {
        opacity: 0;
        transform: translateY(120px) rotateX(-15deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

@keyframes overlayFadeIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes overlayScaleIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes cardFlip3D {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardGenesisReveal {
    0% {
        opacity: 0;
        transform: scale(0.55) translateY(30px);
        filter: blur(14px);
    }
    50% {
        opacity: 0.7;
        filter: blur(4px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
    }
}

@keyframes zoomRotateIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes rippleExpand {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes diagonalSlideIn {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUpFloat {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(217, 70, 239, 0.4);
    }
    50% {
        box-shadow: 0 0 30px 10px rgba(217, 70, 239, 0.2);
    }
}

@keyframes borderGradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.slide-up-overlay {
    position: relative;
    perspective: 1000px;
}

.slide-up-overlay-content {
    opacity: 0;
    animation-fill-mode: forwards;
}

.services-grid .slide-up-overlay {
    opacity: 0;
}

.services-grid .slide-up-overlay.animate-enter {
    opacity: 1;
}

.services-grid .slide-up-overlay.animate-enter .slide-up-overlay-content {
    animation: cardGenesisReveal 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.pain-grid .slide-up-overlay.animate-enter .slide-up-overlay-content {
    animation: zoomRotateIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.methodology-grid .slide-up-overlay.animate-enter .slide-up-overlay-content {
    animation: diagonalSlideIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.slide-up-overlay.animate-enter-delayed .slide-up-overlay-content {
    animation: slideUpOverlayReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.slide-up-overlay.animate-enter-delay-1 .slide-up-overlay-content {
    animation: slideUpOverlayReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.slide-up-overlay.animate-enter-delay-2 .slide-up-overlay-content {
    animation: slideUpOverlayReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.slide-up-overlay.animate-enter-delay-3 .slide-up-overlay-content {
    animation: slideUpOverlayReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.slide-up-overlay.animate-enter-delay-4 .slide-up-overlay-content {
    animation: slideUpOverlayReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.slide-up-overlay.animate-enter-delay-5 .slide-up-overlay-content {
    animation: slideUpOverlayReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.slide-up-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.08), rgba(6, 182, 212, 0.08));
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.slide-up-overlay.animate-enter::before {
    animation: overlayFadeIn 0.6s ease 0.3s forwards;
}

.slide-up-overlay:hover {
    transform: translateY(-5px);
}

.slide-up-overlay:hover::before {
    opacity: 1;
}

.services-grid .slide-up-overlay.animate-enter {
}

.pain-grid .slide-up-overlay.animate-enter {
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes subtitleFade {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes dividerGrow {
    0% {
        width: 0;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        width: 60px;
        opacity: 1;
    }
}

.section-header.animate-enter h2 {
    animation: titleReveal 0.6s ease-out forwards;
}

.section-header.animate-enter .section-desc {
    animation: subtitleFade 0.5s ease 0.2s forwards;
    opacity: 0;
}

.section-header.animate-enter .section-divider {
    animation: dividerGrow 0.5s ease 0.3s forwards;
    width: 0;
}

.services-grid .slide-up-overlay:hover .slide-up-overlay-content {
    transform: translateY(-4px);
    transition: all 0.3s ease;
}

.pain-grid .slide-up-overlay:hover .slide-up-overlay-content {
    transform: translateY(-4px);
    transition: all 0.3s ease;
}

.methodology-grid .slide-up-overlay:hover .slide-up-overlay-content {
    transform: translateY(-4px);
    transition: all 0.3s ease;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.slide-up-overlay::after {
    display: none;
}

.slide-up-overlay:hover::after {
    display: none;
}

.services-grid .slide-up-overlay.animate-enter .service-icon {
}

.pain-grid .slide-up-overlay.animate-enter .pain-icon {
}

.methodology-grid .slide-up-overlay.animate-enter .step-icon {
}

.animate-number {
    display: inline-block;
    font-variant-numeric: tabular-nums;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.service-price span:first-child {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(90deg, #d946ef, #06b6d4, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-price span:last-child {
    color: #9ca3af;
    font-size: 14px;
}

.portfolio {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
}

.portfolio h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
}

.portfolio-categories {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.category-btn {
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #9ca3af;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn.active,
.category-btn:hover {
    background: linear-gradient(135deg, #d946ef, #06b6d4, #ec4899);
    color: #fff;
    border-color: transparent;
}

.film-reel-enhanced {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(10, 10, 21, 0.98) 0%, rgba(26, 26, 46, 0.96) 50%, rgba(10, 10, 21, 0.98) 100%);
    margin: 30px 0 40px;
    box-shadow: 0 0 80px rgba(217, 70, 239, 0.06), inset 0 0 80px rgba(0, 0, 0, 0.3);
}

.film-reel-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 120px;
    background: linear-gradient(90deg, rgba(10, 10, 21, 0.98), transparent);
    pointer-events: none;
    z-index: 10;
}

.film-reel-enhanced::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 120px;
    background: linear-gradient(-90deg, rgba(10, 10, 21, 0.98), transparent);
    pointer-events: none;
    z-index: 10;
}

.film-reel-enhanced .film-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 600px 200px at 20% 50%, rgba(217, 70, 239, 0.06), transparent),
        radial-gradient(ellipse 600px 200px at 80% 50%, rgba(6, 182, 212, 0.06), transparent);
    pointer-events: none;
    z-index: 2;
}

.film-row {
    position: absolute;
    width: 100%;
    display: flex;
    overflow: hidden;
}

.film-row-left {
    top: 20px;
    z-index: 1;
    opacity: 0.55;
    transform: scale(0.9);
    filter: brightness(0.8);
}

.film-row-right {
    top: 150px;
    z-index: 3;
    opacity: 1;
}

.film-row-left-slow {
    top: 280px;
    z-index: 1;
    opacity: 0.55;
    transform: scale(0.9);
    filter: brightness(0.8);
}

.film-track {
    display: flex;
    gap: 18px;
    flex-shrink: 0;
    align-items: center;
}

.film-row-left .film-track {
    animation: filmScrollLeft 80s linear infinite;
}

.film-row-right .film-track {
    animation: filmScrollRight 70s linear infinite;
}

.film-row-left-slow .film-track {
    animation: filmScrollLeft 100s linear infinite;
}

.film-item {
    flex-shrink: 0;
    width: 320px;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(217, 70, 239, 0.12);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.film-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.film-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 12px 10px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.85));
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
    opacity: 0.95;
}

.film-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.2), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.film-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.5), rgba(6, 182, 212, 0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    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;
    z-index: 3;
    pointer-events: none;
}

.film-row-right .film-item:hover {
    box-shadow: 0 16px 48px rgba(217, 70, 239, 0.35), 0 0 30px rgba(6, 182, 212, 0.2);
    z-index: 10;
}

.film-row-right .film-item:hover img {
    opacity: 1;
}

.film-row-right .film-item:hover .film-label {
    transform: translateY(0);
}

.film-row-right .film-item:hover::before {
    opacity: 1;
}

.film-row-right .film-item:hover::after {
    opacity: 1;
}

.film-reel-enhanced.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px) scale(0.98);
    transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.film-reel-enhanced.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0) scale(1);
}

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

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

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.skeleton-card {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    display: flex;
    flex-direction: column;
    padding: 20px;
    z-index: 1;
}

.skeleton-image {
    height: 60%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 12px;
    margin-bottom: 16px;
}

.skeleton-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.skeleton-category {
    height: 20px;
    width: 40%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 6px;
}

.skeleton-title {
    height: 24px;
    width: 80%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 6px;
}

.skeleton-text {
    height: 18px;
    width: 60%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 6px;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(217, 70, 239, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(217, 70, 239, 0.6);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.6s ease-out forwards;
}

.animate-fade-in-right {
    animation: fadeInRight 0.6s ease-out forwards;
}

.animate-slide-in {
    animation: slideIn 0.8s ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn 0.5s ease-out forwards;
}

.animate-bounce-in {
    animation: bounceIn 0.6s ease-out forwards;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

.hero-badge,
.hero h1,
.hero p,
.hero-buttons {
    opacity: 0;
}

.hero-badge { animation: fadeInUp 0.6s ease-out 0.2s forwards; }
.hero h1 { animation: fadeInUp 0.6s ease-out 0.4s forwards; }
.hero p { animation: fadeInUp 0.6s ease-out 0.6s forwards; }
.hero-buttons { animation: fadeInUp 0.6s ease-out 0.8s forwards; }

.portfolio-card.loaded .skeleton-card {
    display: none;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
}

.portfolio-card img.loaded {
    opacity: 1;
}

.portfolio-card:hover img {
    transform: scale(1.1);
}

.portfolio-info {
    padding: 20px;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 0 0 12px 12px;
}

.portfolio-category {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.8), rgba(6, 182, 212, 0.8));
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 12px;
    width: fit-content;
}

.portfolio-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.portfolio-info p {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.6;
}

.portfolio-tags span {
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 12px;
    color: #9ca3af;
}

.about {
    padding: 100px 0;
}

.about h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.about-text h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 24px;
    padding-left: 16px;
    position: relative;
    letter-spacing: 0.02em;
}

.about-text h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: linear-gradient(180deg, #8b5cf6, #06b6d4);
    border-radius: 2px;
}

.about-text p {
    color: #9ca3af;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 18px;
    justify-content: center;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.06), rgba(6, 182, 212, 0.04));
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.value-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #8b5cf6, #06b6d4);
}

.value-item:hover {
    border-color: rgba(139, 92, 246, 0.25);
    transform: translateX(4px);
}

.value-item i {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    flex-shrink: 0;
}

.value-item span {
    color: #e5e7eb;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 0;
    margin: 50px 0 60px;
    padding: 50px 30px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.08));
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.about-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), rgba(6, 182, 212, 0.5), transparent);
}

.about-stat {
    flex: 1;
    text-align: center;
    padding: 0 16px;
    position: relative;
    background: none;
    border: none;
    backdrop-filter: none;
    border-radius: 0;
    transition: none;
}

.about-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    bottom: 15%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.25), rgba(6, 182, 212, 0.25), transparent);
}

.about-stat i {
    font-size: 24px;
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
    display: inline-block;
}

.about-stat .stat-number {
    font-size: 40px;
    margin-bottom: 6px;
}

.about-stat .stat-label {
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.team-title {
    font-size: 26px;
    font-weight: 700;
    margin: 80px 0 50px;
    text-align: center;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    text-transform: uppercase;
}

.team-title::before,
.team-title::after {
    content: '';
    height: 1px;
    width: 50px;
}

.team-title::before {
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.6));
}

.team-title::after {
    background: linear-gradient(90deg, rgba(6, 182, 212, 0.6), transparent);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
}

.team-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 36px 28px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #8b5cf6, #06b6d4);
    transform: scaleX(0.3);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: rgba(139, 92, 246, 0.25);
    box-shadow: 0 16px 40px rgba(139, 92, 246, 0.1);
}

.team-card:hover::before {
    transform: scaleX(1);
}

.team-avatar {
    width: 110px;
    height: 110px;
    margin: 0 auto 20px;
    padding: 3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    transition: all 0.4s ease;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: none;
    margin-bottom: 0;
}

.team-card:hover .team-avatar {
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.team-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.team-role {
    display: block;
    font-size: 13px;
    background: linear-gradient(90deg, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
    letter-spacing: 0.03em;
}

.team-card p {
    color: #9ca3af;
    font-size: 13.5px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.team-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #9ca3af;
    font-size: 14px;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(6, 182, 212, 0.15));
    border-color: rgba(139, 92, 246, 0.3);
    color: #fff;
}

.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
}

.contact h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.contact-item i {
    font-size: 22px;
    color: #8b5cf6;
    flex-shrink: 0;
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    color: #a78bfa;
    transform: scale(1.15);
}

.contact-label {
    display: block;
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 4px;
}

.contact-value {
    color: #fff;
    font-weight: 500;
}

.contact-info a.contact-value {
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a.contact-value:hover {
    color: #06b6d4;
}

.working-hours {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
}

.working-hours p {
    color: #9ca3af;
    font-size: 14px;
    margin-top: 8px;
}

.contact-form {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(6, 182, 212, 0.5);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6b7280;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.footer {
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a2e 50%, #16213e 100%);
}

.footer-wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 200%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%230f0f0f' opacity='1'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: cover;
    pointer-events: none;
    animation: waveAnimation 20s ease-in-out infinite;
}

@keyframes waveAnimation {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-25%); }
}

.footer-glow {
    position: absolute;
    top: 10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(217, 70, 239, 0.08) 0%, rgba(6, 182, 212, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(40px);
    animation: glowPulse 8s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr;
    gap: 60px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-hero {
    padding: 30px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.footer-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: 0 24px 0 50%;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.footer-tagline {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(90deg, #d946ef, #06b6d4, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.footer-divider {
    height: 2px;
    background: linear-gradient(90deg, rgba(217, 70, 239, 0.3), transparent);
    margin-bottom: 20px;
    width: 60px;
    border-radius: 1px;
}

.footer-desc {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.social-item {
    position: relative;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-item:hover {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.2), rgba(6, 182, 212, 0.2));
    border-color: rgba(6, 182, 212, 0.4);
    color: #06b6d4;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.2);
}

.social-tooltip {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    color: #fff;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.social-item:hover .social-tooltip {
    opacity: 1;
    bottom: -35px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-services {
    grid-column: span 2;
}

.footer-contact-card {
    grid-column: 1 / -1;
}

.footer-section {
    padding: 20px;
}

.footer-section-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-icon {
    font-size: 18px;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #9ca3af;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d946ef, #06b6d4);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #06b6d4;
    padding-left: 8px;
}

.footer-link:hover::before {
    width: 20px;
}

.footer-cat-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #c4b5fd;
    margin-top: 0;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.footer-nav-sm {
    gap: 12px;
}

.footer-nav-sm .footer-link {
    font-size: 14px;
}

.footer-service-cats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 20px;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-services {
        grid-column: span 2;
    }

    .footer-contact-card {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-services,
    .footer-contact-card {
        grid-column: span 1;
    }

    .footer-service-cats {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-card {
        grid-template-columns: 1fr;
    }
}

.footer-contact-card {
    background: linear-gradient(145deg, rgba(217, 70, 239, 0.05), rgba(6, 182, 212, 0.05));
    border-radius: 16px;
    padding: 24px;
}

.contact-card {
    display: grid;
    grid-template-columns: auto auto;
    gap: 14px 24px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #9ca3af;
    font-size: 14px;
    white-space: nowrap;
}

.contact-icon {
    width: 18px;
    color: #06b6d4;
}

.contact-row a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-row a:hover {
    color: #06b6d4;
}

.footer-newsletter-section {
    margin: 40px 0;
    position: relative;
    z-index: 1;
}

.newsletter-container {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.1) 0%, rgba(6, 182, 212, 0.1) 50%, rgba(236, 72, 153, 0.1) 100%);
    border: 1px solid rgba(217, 70, 239, 0.2);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    overflow: hidden;
    position: relative;
}

.newsletter-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(217, 70, 239, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter-content {
    flex: 1;
    min-width: 250px;
    position: relative;
    z-index: 1;
}

.newsletter-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(90deg, #fff, #9ca3af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-desc {
    color: #9ca3af;
    font-size: 15px;
}

.newsletter-form-wrapper {
    flex: 1;
    min-width: 300px;
    position: relative;
    z-index: 1;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.input-group {
    flex: 1;
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 16px;
}

.newsletter-form input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.1);
}

.newsletter-form input::placeholder {
    color: #6b7280;
}

.btn-newsletter {
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-newsletter:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217, 70, 239, 0.3);
}

.newsletter-privacy {
    color: #6b7280;
    font-size: 12px;
    margin-top: 12px;
    text-align: right;
}

.map-link {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.map-link:hover {
    color: #06b6d4;
}

.map-link i {
    font-size: 11px;
    opacity: 0.7;
}

.work-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 10px;
}

.work-status.online {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.work-status.offline {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.quick-contact {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-contact-title {
    color: #94a3b8;
    font-size: 12px;
    margin-bottom: 12px;
    font-weight: 500;
}

.quick-contact-links {
    display: flex;
    gap: 10px;
}

.quick-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.quick-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.quick-link.tg {
    background: linear-gradient(135deg, #0088cc, #229ed9);
}

.quick-link.ws {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.quick-link.line {
    background: linear-gradient(135deg, #00c300, #00b900);
}

.consult-fab {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 1000;
}

.consult-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d946ef, #06b6d4);
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(217, 70, 239, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.consult-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 35px rgba(217, 70, 239, 0.5);
}

.consult-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #d946ef, #06b6d4);
    animation: pulse 2s infinite;
    z-index: -1;
}

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

.consult-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    min-width: 200px;
}

.consult-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.consult-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    color: #e2e8f0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.consult-menu-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #06b6d4;
}

.consult-menu-item i {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.consult-menu-item.tg i {
    background: linear-gradient(135deg, #0088cc, #229ed9);
    color: #fff;
}

.consult-menu-item.ws i {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
}

.consult-menu-item.line i {
    background: linear-gradient(135deg, #00c300, #00b900);
    color: #fff;
}

.consult-menu-item.phone i {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: #fff;
}

.consult-menu-item.email i {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
}

@media (max-width: 768px) {
    .consult-fab {
        right: 20px;
        bottom: 20px;
    }

    .consult-btn {
        width: 54px;
        height: 54px;
        font-size: 20px;
    }

    .consult-menu {
        right: -10px;
        min-width: 180px;
    }
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, #d946ef, #06b6d4);
    color: #fff;
}

.footer-legal {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
}

.footer-legal a {
    color: #9ca3af;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #06b6d4;
}

.legal-page {
    padding: 120px 0 60px;
    min-height: 100vh;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 32px;
    color: #e5e7eb;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.back-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.15), rgba(6, 182, 212, 0.15));
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 0;
}

.back-btn i,
.back-btn span {
    position: relative;
    z-index: 1;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-btn i {
    font-size: 12px;
}

.back-btn:hover {
    border-color: rgba(217, 70, 239, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(217, 70, 239, 0.15), 0 0 0 1px rgba(217, 70, 239, 0.1);
    color: #fff;
}

.back-btn:hover::before {
    opacity: 1;
}

.back-btn:hover i {
    transform: translateX(-4px);
}

.back-btn:active {
    transform: translateY(0);
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
}

.legal-header h1 {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(90deg, #d946ef, #06b6d4, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.legal-header .update-date {
    color: #9ca3af;
    font-size: 14px;
}

.brand-notice {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 8px 20px;
    font-size: 13px;
    color: #c4b5fd;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 30px;
}

.brand-notice i {
    font-size: 12px;
    color: #8b5cf6;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
}

.legal-section h2 {
    font-size: 22px;
    font-weight: 600;
    color: #06b6d4;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section p {
    color: #e5e7eb;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-section ul {
    list-style: none;
    padding-left: 0;
}

.legal-section ul li {
    color: #e5e7eb;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.legal-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #d946ef, #06b6d4);
    border-radius: 50%;
}

.legal-section ul li strong {
    color: #fff;
}

.legal-section a {
    color: #06b6d4;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: #d946ef;
}

.contact-info {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px;
}

.contact-info p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info i {
    color: #d946ef;
    width: 20px;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 100px 0 40px;
    }
    
    .legal-header h1 {
        font-size: 32px;
    }
    
    .legal-section {
        padding: 20px;
    }
    
    .legal-section h2 {
        font-size: 18px;
    }
}

/* Light theme overrides for legal pages */
[data-theme="light"] .legal-section {
    background: linear-gradient(145deg, rgba(217, 70, 239, 0.03), rgba(6, 182, 212, 0.03));
    border: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .legal-section h2 {
    color: #0891b2;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .legal-section p {
    color: #475569;
}

[data-theme="light"] .legal-section ul li {
    color: #475569;
}

[data-theme="light"] .legal-section ul li strong {
    color: #1e293b;
}

[data-theme="light"] .legal-section a {
    color: #0891b2;
}

[data-theme="light"] .legal-section a:hover {
    color: #d946ef;
}

[data-theme="light"] .legal-header .update-date {
    color: #64748b;
}

[data-theme="light"] .brand-notice {
    color: #7c3aed;
    background: rgba(139, 92, 246, 0.06);
    border-color: rgba(139, 92, 246, 0.2);
}

[data-theme="light"] .brand-notice i {
    color: #7c3aed;
}

@media (max-width: 480px) {
    .brand-notice {
        font-size: 12px;
        padding: 6px 14px;
        margin-top: 14px;
    }
}

[data-theme="light"] .contact-info {
    background: rgba(0, 0, 0, 0.02);
}

[data-theme="light"] .contact-info p {
    color: #475569;
}

[data-theme="light"] .back-btn {
    color: #475569;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .back-btn:hover {
    color: #1e293b;
    border-color: rgba(217, 70, 239, 0.3);
    box-shadow: 0 8px 24px rgba(217, 70, 239, 0.1), 0 0 0 1px rgba(217, 70, 239, 0.08);
}

/* ===== 文章页样式 ===== */
.article-hero {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 40px;
    display: block;
}

/* 文中插图 */
.article-img-wrapper {
    margin: 36px 0;
}

.article-img-wrapper img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.article-img-caption {
    text-align: center;
    font-size: 14px;
    color: #9ca3af;
    margin-top: 12px;
    font-style: italic;
}

[data-theme="light"] .article-img-caption {
    color: #64748b;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.article-meta .article-category {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.2), rgba(6, 182, 212, 0.2));
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: #06b6d4;
}

.article-meta .article-date,
.article-meta .article-readtime {
    font-size: 14px;
    color: #9ca3af;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
}

.article-body .article-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #e5e7eb;
    font-weight: 400;
    padding: 24px 28px;
    background: linear-gradient(145deg, rgba(217, 70, 239, 0.06), rgba(6, 182, 212, 0.06));
    border-left: 4px solid;
    border-image: linear-gradient(180deg, #d946ef, #06b6d4) 1;
    border-radius: 0 12px 12px 0;
    margin-bottom: 40px;
}

.article-body h2 {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin: 40px 0 16px;
    padding-left: 16px;
    border-left: 4px solid #06b6d4;
}

.article-body h3 {
    font-size: 20px;
    font-weight: 600;
    color: #e5e7eb;
    margin: 28px 0 12px;
}

.article-body p {
    font-size: 16px;
    line-height: 1.85;
    color: #c5cdd9;
    margin-bottom: 20px;
}

.article-body ul,
.article-body ol {
    margin: 0 0 24px;
    padding-left: 24px;
}

.article-body li {
    font-size: 16px;
    line-height: 1.85;
    color: #c5cdd9;
    margin-bottom: 10px;
}

.article-body strong {
    color: #fff;
    font-weight: 600;
}

.article-body blockquote {
    margin: 30px 0;
    padding: 20px 28px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    font-size: 17px;
    line-height: 1.7;
    color: #e5e7eb;
    font-style: italic;
    position: relative;
}

.article-body blockquote::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #d946ef;
    font-size: 18px;
    margin-right: 12px;
    font-style: normal;
}

.article-data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.article-data-item {
    text-align: center;
    padding: 24px 16px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.article-data-item:hover {
    transform: translateY(-3px);
    border-color: rgba(6, 182, 212, 0.3);
}

.article-data-item .data-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(90deg, #d946ef, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

.article-data-item .data-label {
    font-size: 13px;
    color: #9ca3af;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 40px 0 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.article-tag {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 13px;
    color: #9ca3af;
    transition: all 0.3s ease;
}

.article-tag:hover {
    color: #06b6d4;
    border-color: rgba(6, 182, 212, 0.3);
    background: rgba(6, 182, 212, 0.05);
}

.article-footer-cta {
    margin: 50px 0 0;
    padding: 40px;
    text-align: center;
    background: linear-gradient(145deg, rgba(217, 70, 239, 0.08), rgba(6, 182, 212, 0.08));
    border: 1px solid rgba(217, 70, 239, 0.2);
    border-radius: 20px;
}

.article-footer-cta h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.article-footer-cta p {
    color: #c5cdd9;
    margin-bottom: 24px;
}

.article-footer-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #d946ef, #06b6d4);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.article-footer-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(217, 70, 239, 0.3);
}

/* 营销指南目录 */
.guide-toc {
    margin: 0 0 40px;
    padding: 28px 32px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.guide-toc-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.guide-toc-title i {
    color: #d946ef;
    font-size: 16px;
}

.guide-toc ol {
    list-style: none;
    counter-reset: toc;
    padding-left: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 24px;
}

.guide-toc li {
    counter-increment: toc;
    font-size: 15px;
    line-height: 1.6;
}

.guide-toc li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 4px;
    color: #c5cdd9;
    text-decoration: none;
    transition: all 0.25s ease;
    letter-spacing: 0.02em;
}

.guide-toc li a::before {
    content: counter(toc, decimal-leading-zero);
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 700;
    color: #06b6d4;
    opacity: 0.7;
    font-family: 'Poppins', monospace;
}

.guide-toc li a:hover {
    color: #fff;
    transform: translateX(4px);
}

.guide-toc li a:hover::before {
    color: #d946ef;
    opacity: 1;
}

@media (max-width: 640px) {
    .guide-toc {
        padding: 22px 20px;
    }

    .guide-toc ol {
        grid-template-columns: 1fr;
        gap: 2px;
    }
}

[data-theme="light"] .guide-toc {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.01));
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .guide-toc-title {
    color: #1e293b;
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .guide-toc li a {
    color: #475569;
}

[data-theme="light"] .guide-toc li a:hover {
    color: #0f172a;
}

/* 文章页白色主题适配 */
[data-theme="light"] .article-body p,
[data-theme="light"] .article-body li {
    color: #475569;
}

[data-theme="light"] .article-body h2 {
    color: #1e293b;
}

[data-theme="light"] .article-body h3 {
    color: #334155;
}

[data-theme="light"] .article-body strong {
    color: #0f172a;
}

[data-theme="light"] .article-body .article-intro {
    color: #334155;
    background: linear-gradient(145deg, rgba(217, 70, 239, 0.04), rgba(6, 182, 212, 0.04));
}

[data-theme="light"] .article-body blockquote {
    color: #334155;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.01));
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .article-data-item {
    background: #ffffff;
    border-color: #e2e8f0;
}

[data-theme="light"] .article-tag {
    background: #f8fafc;
    border-color: #e2e8f0;
    color: #64748b;
}

[data-theme="light"] .article-meta .article-date,
[data-theme="light"] .article-meta .article-readtime {
    color: #64748b;
}

[data-theme="light"] .article-footer-cta p {
    color: #475569;
}

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

.footer-bottom p {
    color: #6b7280;
    font-size: 14px;
    flex: 1;
    min-width: 200px;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d946ef, #06b6d4);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    box-shadow: 0 8px 25px rgba(217, 70, 239, 0.4);
    overflow: visible;
}

.back-to-top .progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    pointer-events: none;
}

.back-to-top .progress-ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 3;
}

.back-to-top .progress-ring-progress {
    fill: none;
    stroke: #fff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 169.65;
    stroke-dashoffset: 169.65;
    transition: stroke-dashoffset 0.1s ease;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.5));
}

.back-to-top i {
    position: relative;
    z-index: 1;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 35px rgba(217, 70, 239, 0.5);
}

.back-to-top:active {
    transform: scale(0.95);
}

.back-to-top:active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 52px;
        height: 52px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        display: flex;
        justify-content: space-between;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 90px 28px 32px;
        gap: 4px;
        border: none;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: 90;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        font-size: 26px;
        font-weight: 600;
        letter-spacing: 1px;
        padding: 16px 0 16px 20px;
        border-radius: 0;
        color: #9ca3af;
        width: 100%;
        position: relative;
        display: block;
    }

    .nav-links a:hover {
        color: #fff;
        background: none;
    }

    .nav-links a.active {
        color: transparent;
        background: none;
        background-image: linear-gradient(90deg, #d946ef, #06b6d4);
        -webkit-background-clip: text;
        background-clip: text;
    }

    .nav-links a.active::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 3px;
        height: 24px;
        background: linear-gradient(180deg, #d946ef, #06b6d4);
        border-radius: 2px;
    }

    .nav-indicator {
        display: none;
    }

    body.nav-open {
        overflow: hidden;
    }

    .get-quote {
        display: none;
    }

    .theme-toggle {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .lang-toggle {
        padding: 6px 12px;
        font-size: 12px;
        gap: 5px;
    }

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

    .hero p {
        font-size: 16px;
    }

    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .services-grid .service-card,
    .services-grid .service-card:nth-last-child(-n+2) {
        grid-column: span 1;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 24px 0;
        padding: 32px 16px;
    }

    .about-stat {
        flex: 1 1 50%;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
    }

    .about-stats {
        flex-direction: column;
        gap: 28px;
    }
}

.news {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
}

.news h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
}

.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.news-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: rgba(6, 182, 212, 0.3);
}

.news-card.featured {
    grid-column: span 1;
}

.news-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    transition: filter 0.4s ease;
}

.news-card:hover img {
    filter: brightness(1.08) saturate(1.2);
}

.news-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-category {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.2), rgba(6, 182, 212, 0.2));
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: #06b6d4;
    margin-bottom: 12px;
}

.news-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-card p {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    margin-top: auto;
}

.news-date,
.news-readtime {
    font-size: 13px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #d946ef, #06b6d4);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.news-readmore:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(217, 70, 239, 0.4);
}

.news-sidebar {
    display: grid;
    gap: 30px;
}

.news-section {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px;
}

.news-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.topics-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.topic-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
}

.topic-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-left-color: #06b6d4;
}

.topic-item:hover .topic-arrow {
    transform: translateX(4px);
    opacity: 1;
}

.topic-item:hover .topic-name {
    color: #06b6d4;
}

.topic-rank {
    font-size: 16px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.15);
    font-family: 'Poppins', sans-serif;
    width: 28px;
    flex-shrink: 0;
    text-align: center;
}

.topic-item:nth-child(1) .topic-rank,
.topic-item:nth-child(2) .topic-rank,
.topic-item:nth-child(3) .topic-rank {
    background: linear-gradient(135deg, #d946ef, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.topic-name {
    flex: 1;
    font-size: 14px;
    color: #cbd5e1;
    font-weight: 500;
    transition: color 0.3s ease;
}

.topic-arrow {
    font-size: 12px;
    color: #06b6d4;
    opacity: 0;
    transition: all 0.3s ease;
}

.newsletter p {
    color: #9ca3af;
    font-size: 14px;
    margin-bottom: 16px;
}

.news-section .newsletter-form {
    display: flex;
    gap: 10px;
}

.news-section .newsletter-form input {
    flex: 1;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.news-section .newsletter-form input:focus {
    border-color: rgba(6, 182, 212, 0.5);
}

.news-section .newsletter-form input::placeholder {
    color: #6b7280;
}

.news-section .newsletter-form button {
    padding: 12px 20px;
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-card.featured {
        grid-column: span 1;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}



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

.animate-spin {
    animation: spin 1s linear infinite;
}

.w-5 {
    width: 1.25rem;
}

.h-5 {
    height: 1.25rem;
}

.opacity-25 {
    opacity: 0.25;
}

.opacity-75 {
    opacity: 0.75;
}

@media (max-width: 768px) {
    .menu-toggle span {
        transition: all 0.3s ease;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .nav-links li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.35s; }

    [data-theme="light"] .nav-links {
        background: rgba(255, 255, 255, 0.98);
    }

    [data-theme="light"] .nav-links a {
        color: #64748b;
    }

    [data-theme="light"] .nav-links a:hover {
        color: #1e293b;
    }

    .menu-toggle span {
        background: #fff;
    }

    [data-theme="light"] .menu-toggle span {
        background: #1e293b;
    }
}

[data-theme="light"] {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --border-color: #e2e8f0;
    --accent-color: #d946ef;
    --accent-color-2: #06b6d4;
    --card-bg: #ffffff;
}

:root {
    --bg-primary: #0f0f0f;
    --bg-secondary: #1a1a2e;
    --bg-tertiary: #16213e;
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --border-color: rgba(255, 255, 255, 0.1);
    --accent-color: #d946ef;
    --accent-color-2: #06b6d4;
    --card-bg: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

[data-theme="dark"] {
    --bg-primary: #0f0f0f;
    --bg-secondary: #1a1a2e;
    --bg-tertiary: #16213e;
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --border-color: rgba(255, 255, 255, 0.1);
    --accent-color: #d946ef;
    --accent-color-2: #06b6d4;
    --card-bg: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

[data-theme="light"] body {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    color: #1e293b;
}

[data-theme="light"] .skip-link {
    background: linear-gradient(135deg, #d946ef, #06b6d4);
    color: #fff;
}

[data-theme="light"] .gradient-text {
    background: linear-gradient(90deg, #d946ef, #06b6d4, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="light"] .btn-primary {
    background: linear-gradient(135deg, #d946ef 0%, #06b6d4 50%, #ec4899 100%);
    color: #fff;
}

[data-theme="light"] .btn-secondary {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #1e293b;
}

[data-theme="light"] .btn-secondary:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(6, 182, 212, 0.5);
}

[data-theme="light"] .section-badge {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.15), rgba(6, 182, 212, 0.15));
    color: #06b6d4;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

[data-theme="light"] .section-title {
    color: #1e293b;
}

[data-theme="light"] .section-subtitle {
    color: #334155;
}

[data-theme="light"] .section-desc {
    color: #64748b;
}

[data-theme="light"] .section-stat {
    color: #64748b;
}

[data-theme="light"] section:nth-child(even) {
    background: linear-gradient(180deg, rgba(6, 182, 212, 0.03) 0%, transparent 50%);
}

[data-theme="light"] .navbar {
    background: transparent;
}

[data-theme="light"] .navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .logo-text {
    color: #1e293b;
}

[data-theme="light"] .nav-links a {
    color: #64748b;
}

[data-theme="light"] .nav-links a:hover {
    color: #1e293b;
}

[data-theme="light"] .nav-links a.active {
    color: #1e293b;
}

[data-theme="light"] .get-quote {
    background: linear-gradient(135deg, #d946ef, #06b6d4, #ec4899);
    color: #fff;
}

[data-theme="light"] .theme-toggle {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #64748b;
}

[data-theme="light"] .theme-toggle:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #1e293b;
}

[data-theme="light"] .menu-toggle span {
    background: #1e293b;
}

[data-theme="light"] .hero-badge {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.1), rgba(6, 182, 212, 0.1));
    color: #06b6d4;
}

[data-theme="light"] .hero p {
    color: #64748b;
}

[data-theme="light"] .stat-label {
    color: #64748b;
}

[data-theme="light"] .hero-platforms-label {
    color: #94a3b8;
}

[data-theme="light"] .hero-platforms-list i {
    color: rgba(0, 0, 0, 0.25);
}

[data-theme="light"] .hero-platforms-list i:hover {
    color: #0891b2;
}

[data-theme="light"] .service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

[data-theme="light"] .service-card:hover {
    border-color: rgba(6, 182, 212, 0.5);
}

[data-theme="light"] .service-icon {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.1), rgba(6, 182, 212, 0.1));
    color: #06b6d4;
}

[data-theme="light"] .service-card p {
    color: #64748b;
}

[data-theme="light"] .service-features span {
    background: rgba(0, 0, 0, 0.05);
    color: #64748b;
}

[data-theme="light"] .portfolio {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
}

[data-theme="light"] .film-reel-enhanced {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.96) 50%, rgba(255, 255, 255, 0.98) 100%);
    box-shadow: 0 0 80px rgba(217, 70, 239, 0.04), inset 0 0 80px rgba(217, 70, 239, 0.02);
}

[data-theme="light"] .film-reel-enhanced::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.98), transparent);
}

[data-theme="light"] .film-reel-enhanced::after {
    background: linear-gradient(-90deg, rgba(255, 255, 255, 0.98), transparent);
}

[data-theme="light"] .film-reel-enhanced .film-glow {
    background: 
        radial-gradient(ellipse 600px 200px at 20% 50%, rgba(217, 70, 239, 0.05), transparent),
        radial-gradient(ellipse 600px 200px at 80% 50%, rgba(6, 182, 212, 0.05), transparent);
}

[data-theme="light"] .film-item {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(217, 70, 239, 0.1);
}

[data-theme="light"] .film-row-right .film-item:hover {
    box-shadow: 0 16px 48px rgba(217, 70, 239, 0.18), 0 0 30px rgba(6, 182, 212, 0.1);
}

[data-theme="light"] .category-btn {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #64748b;
}

[data-theme="light"] .category-btn.active,
[data-theme="light"] .category-btn:hover {
    background: linear-gradient(135deg, #d946ef, #06b6d4, #ec4899);
    color: #fff;
}

[data-theme="light"] .skeleton-card {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.01));
}

[data-theme="light"] .skeleton-image,
[data-theme="light"] .skeleton-category,
[data-theme="light"] .skeleton-title,
[data-theme="light"] .skeleton-text {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.02) 25%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.02) 75%);
}

[data-theme="light"] .portfolio-info {
    background: rgba(255, 255, 255, 0.9);
}

[data-theme="light"] .portfolio-info h3 {
    color: #1e293b;
}

[data-theme="light"] .portfolio-info p {
    color: #64748b;
}

[data-theme="light"] .section-desc {
    color: #64748b;
}

[data-theme="light"] .about-text p {
    color: #64748b;
}

[data-theme="light"] .value-item {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(6, 182, 212, 0.03));
    border-color: rgba(139, 92, 246, 0.1);
}

[data-theme="light"] .value-item span {
    color: #475569;
}

[data-theme="light"] .about-stats {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.06), rgba(6, 182, 212, 0.05));
    border-color: rgba(139, 92, 246, 0.12);
}

[data-theme="light"] .team-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

[data-theme="light"] .team-card:hover {
    border-color: rgba(139, 92, 246, 0.4);
}

[data-theme="light"] .team-card p {
    color: #64748b;
}

[data-theme="light"] .team-social {
    border-top-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .team-social a {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.08);
    color: #64748b;
}

[data-theme="light"] .contact {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
}

[data-theme="light"] .contact-item i {
    color: #7c3aed;
}

[data-theme="light"] .contact-label {
    color: #64748b;
}

[data-theme="light"] .contact-value {
    color: #1e293b;
}

[data-theme="light"] .working-hours {
    background: rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .working-hours p {
    color: #64748b;
}

[data-theme="light"] .contact-form {
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

[data-theme="light"] .form-group label {
    color: #64748b;
}

[data-theme="light"] .category-label {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.1), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(217, 70, 239, 0.2);
    color: #1e293b;
}

[data-theme="light"] .category-label i {
    color: #06b6d4;
}

[data-theme="light"] .industry-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

[data-theme="light"] .industry-card::before {
    background: linear-gradient(90deg, transparent, rgba(217, 70, 239, 0.3), rgba(6, 182, 212, 0.3), transparent);
}

[data-theme="light"] .industry-card:hover {
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.08),
        0 0 20px rgba(6, 182, 212, 0.1);
    background: #ffffff;
}

[data-theme="light"] .industry-card .industry-icon {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.15), rgba(6, 182, 212, 0.15));
    color: #06b6d4;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.15);
}

[data-theme="light"] .industry-card .industry-icon::before {
    background: linear-gradient(135deg, #d946ef, #06b6d4);
}

[data-theme="light"] .industry-card .industry-info h4 {
    color: #1e293b;
}

[data-theme="light"] .industry-card .industry-info p {
    color: #64748b;
}

[data-theme="light"] .form-group input,
[data-theme="light"] .form-group textarea {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
    color: #1e293b;
}

[data-theme="light"] .form-group input::placeholder,
[data-theme="light"] .form-group textarea::placeholder {
    color: #94a3b8;
}

[data-theme="light"] .footer {
    background: linear-gradient(180deg, #1e293b 0%, #334155 50%, #1e293b 100%);
    border-top: 1px solid #475569;
}

[data-theme="light"] .footer-hero {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .footer-tagline {
    background: linear-gradient(90deg, #d946ef, #06b6d4, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="light"] .footer-desc {
    color: #cbd5e1;
}

[data-theme="light"] .social-item {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: #e2e8f0;
}

[data-theme="light"] .social-item:hover {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.2), rgba(6, 182, 212, 0.2));
    color: #06b6d4;
}

[data-theme="light"] .footer-link {
    color: #e2e8f0;
}

[data-theme="light"] .footer-link:hover {
    color: #06b6d4;
}

[data-theme="light"] .footer-cat-label {
    color: #7c3aed;
}

[data-theme="light"] .footer-section-title {
    color: #ffffff;
}

[data-theme="light"] .footer-logo .logo-text {
    color: #ffffff;
}

[data-theme="light"] .footer-contact-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .map-link {
    color: #e2e8f0;
}

[data-theme="light"] .map-link:hover {
    color: #06b6d4;
}

[data-theme="light"] .quick-contact {
    border-top-color: rgba(255, 255, 255, 0.15);
}

[data-theme="light"] .quick-contact-title {
    color: #cbd5e1;
}

[data-theme="light"] .contact-row {
    color: #e2e8f0;
}

[data-theme="light"] .contact-row a {
    color: #cbd5e1;
}

[data-theme="light"] .contact-row a:hover {
    color: #06b6d4;
}

[data-theme="light"] .newsletter-container {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(217, 70, 239, 0.2);
}

[data-theme="light"] .newsletter-title {
    background: linear-gradient(90deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="light"] .newsletter-desc {
    color: #cbd5e1;
}

[data-theme="light"] .newsletter-form input {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

[data-theme="light"] .newsletter-form input::placeholder {
    color: #64748b;
}

[data-theme="light"] .footer-brand p {
    color: #e2e8f0;
}

[data-theme="light"] .social-links a {
    background: rgba(255, 255, 255, 0.1);
    color: #f1f5f9;
}

[data-theme="light"] .social-links a:hover {
    background: linear-gradient(135deg, #d946ef, #06b6d4);
    color: #fff;
}

[data-theme="light"] .footer-links a {
    color: #e2e8f0;
}

[data-theme="light"] .footer-links a:hover {
    color: #06b6d4;
}

[data-theme="light"] .contact-list-item a,
[data-theme="light"] .contact-list-item span {
    color: #e2e8f0;
}

[data-theme="light"] .contact-list-item a:hover {
    color: #06b6d4;
}

[data-theme="light"] .contact-list-item i {
    color: #06b6d4;
}

[data-theme="light"] .footer-legal a {
    color: #cbd5e1;
}

[data-theme="light"] .footer-legal a:hover {
    color: #06b6d4;
}

[data-theme="light"] .footer-bottom p {
    color: #cbd5e1;
}

[data-theme="light"] .back-to-top {
    background: linear-gradient(135deg, #d946ef, #06b6d4);
    color: #fff;
    box-shadow: 0 8px 25px rgba(217, 70, 239, 0.3);
}

[data-theme="light"] .trusted-by {
    background: rgba(0, 0, 0, 0.02);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .trusted-title {
    color: #64748b;
}

[data-theme="light"] .client-logo {
    color: #64748b;
}

[data-theme="light"] .client-logo:hover {
    color: #1e293b;
}

[data-theme="light"] .trusted-by-inline {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .platforms {
    background: linear-gradient(180deg, rgba(6, 182, 212, 0.05) 0%, transparent 100%);
}

[data-theme="light"] .platform-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

[data-theme="light"] .platform-card.main {
    background: #ffffff;
}

[data-theme="light"] .platform-card::before {
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.02), transparent);
}

[data-theme="light"] .platform-card h3 {
    color: #1e293b;
}

[data-theme="light"] .platform-desc {
    color: #64748b;
}

[data-theme="light"] .platform-tags span {
    background: rgba(0, 0, 0, 0.03);
    color: #64748b;
}

[data-theme="light"] .platform-card:hover .platform-tags span {
    background: rgba(6, 182, 212, 0.1);
    color: #0891b2;
}

[data-theme="light"] .platform-mini {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #475569;
}

[data-theme="light"] .service-badge {
    background: rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .platform-mini::after {
    background: #1e293b;
    color: #fff;
}

[data-theme="light"] .platform-mini::before {
    border-bottom-color: #1e293b;
}

[data-theme="light"] .platform-mini:hover {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.08), rgba(6, 182, 212, 0.08));
    border-color: rgba(217, 70, 239, 0.3);
}

[data-theme="light"] .industry-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

[data-theme="light"] .industry-card h3 {
    color: #1e293b;
}

[data-theme="light"] .industry-card p {
    color: #64748b;
}

[data-theme="light"] .note-badge {
    color: #1e293b;
}

[data-theme="light"] .flow-node {
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 1);
}

[data-theme="light"] .flow-num {
    border-color: #ffffff;
}

[data-theme="light"] .flow-info h3 {
    color: #1e293b;
}

[data-theme="light"] .flow-info p {
    color: #64748b;
}

[data-theme="light"] .loop-back-text {
    color: #64748b;
}

[data-theme="light"] .case-stat-label {
    color: #64748b;
}

[data-theme="light"] .case-testimonial {
    border-top-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .case-testimonial p {
    color: #64748b;
}

[data-theme="light"] .faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

[data-theme="light"] .faq-item:hover {
    border-color: rgba(6, 182, 212, 0.3);
}

[data-theme="light"] .faq-question {
    color: #1e293b;
}

[data-theme="light"] .faq-question:hover {
    color: #06b6d4;
}

[data-theme="light"] .faq-answer p {
    color: #64748b;
}

/* ========================================
   反欺诈提醒弹窗 (Anti-Fraud Popup)
   ======================================== */
.anti-fraud-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(8, 8, 20, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.anti-fraud-overlay.active {
    opacity: 1;
    visibility: visible;
}

.anti-fraud-modal {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: linear-gradient(160deg, #1a1a2e 0%, #16132d 100%);
    border: 1px solid rgba(139, 92, 246, 0.28);
    border-radius: 20px;
    padding: 36px 32px 28px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(139, 92, 246, 0.08);
    transform: scale(0.85) translateY(20px);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.anti-fraud-overlay.active .anti-fraud-modal {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.anti-fraud-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(255, 255, 255, 0.06);
    color: #94a3b8;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.25s ease;
}

.anti-fraud-close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    transform: rotate(90deg);
}

.anti-fraud-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.18), rgba(255, 107, 107, 0.18));
    border: 1px solid rgba(245, 166, 35, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #f5a623;
    filter: drop-shadow(0 0 12px rgba(245, 166, 35, 0.4));
    animation: anti-fraud-pulse 2.5s ease-in-out infinite;
}

@keyframes anti-fraud-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.4); }
    50% { transform: scale(1.06); box-shadow: 0 0 0 12px rgba(245, 166, 35, 0); }
}

.anti-fraud-title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
    letter-spacing: 1.2px;
}

.anti-fraud-subtitle {
    text-align: center;
    font-size: 14px;
    color: #f5a623;
    margin: 0 0 22px;
    font-weight: 500;
    letter-spacing: 0.6px;
}

.anti-fraud-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
    margin: 0 0 20px;
}

.anti-fraud-content {
    font-size: 14px;
    line-height: 1.7;
    color: #cbd5e1;
}

.anti-fraud-content > p {
    margin: 0 0 14px;
    color: #e2e8f0;
}

.anti-fraud-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.anti-fraud-list li {
    position: relative;
    padding-left: 28px;
    color: #cbd5e1;
    line-height: 1.6;
}

.anti-fraud-list li::before {
    content: "\f192";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #8b5cf6;
    font-size: 13px;
}

.anti-fraud-list strong {
    color: #06b6d4;
    font-weight: 600;
}

.anti-fraud-actions {
    margin-top: 26px;
    display: flex;
    justify-content: center;
}

.anti-fraud-btn {
    width: 100%;
    padding: 14px 24px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #8b5cf6, #d946ef);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.35);
}

.anti-fraud-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(139, 92, 246, 0.5);
    filter: brightness(1.08);
}

.anti-fraud-btn:active {
    transform: translateY(0);
}

.anti-fraud-footer {
    text-align: center;
    margin: 18px 0 0;
    font-size: 12px;
    color: #64748b;
    letter-spacing: 0.5px;
}

/* 浅色主题适配 */
[data-theme="light"] .anti-fraud-overlay {
    background: rgba(15, 23, 42, 0.55);
}

[data-theme="light"] .anti-fraud-modal {
    background: linear-gradient(160deg, #ffffff 0%, #f8fafc 100%);
    border-color: rgba(139, 92, 246, 0.22);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(139, 92, 246, 0.06);
}

[data-theme="light"] .anti-fraud-close {
    background: rgba(15, 23, 42, 0.06);
    color: #475569;
}

[data-theme="light"] .anti-fraud-close:hover {
    background: rgba(15, 23, 42, 0.12);
    color: #1e293b;
}

[data-theme="light"] .anti-fraud-title {
    color: #0f172a;
}

[data-theme="light"] .anti-fraud-content,
[data-theme="light"] .anti-fraud-list li {
    color: #475569;
}

[data-theme="light"] .anti-fraud-content > p {
    color: #1e293b;
}

[data-theme="light"] .anti-fraud-footer {
    color: #94a3b8;
}

/* 移动端适配 */
@media (max-width: 480px) {
    .anti-fraud-modal {
        padding: 28px 22px 22px;
        border-radius: 16px;
    }

    .anti-fraud-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
        margin-bottom: 16px;
    }

    .anti-fraud-title {
        font-size: 19px;
    }

    .anti-fraud-subtitle {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .anti-fraud-content {
        font-size: 13px;
    }

    .anti-fraud-list {
        gap: 10px;
    }

    .anti-fraud-btn {
        padding: 13px 20px;
        font-size: 14px;
    }
}

[data-theme="light"] .faq-cta {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.05), rgba(6, 182, 212, 0.05));
    border-color: rgba(6, 182, 212, 0.2);
}

[data-theme="light"] .faq-cta-text h3 {
    color: #1e293b;
}

[data-theme="light"] .faq-cta-text p {
    color: #64748b;
}

[data-theme="light"] .service-cta {
    background: linear-gradient(90deg, rgba(217, 70, 239, 0.08), rgba(6, 182, 212, 0.08));
    border: 1px solid rgba(6, 182, 212, 0.4);
}

[data-theme="light"] .service-cta:hover {
    background: linear-gradient(90deg, #d946ef, #06b6d4);
    color: #fff;
}

/* ========== 定制增长方案模块 ========== */
.quote {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.03) 0%, rgba(6, 182, 212, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.quote::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.07), transparent 70%);
    pointer-events: none;
}

.quote::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.05), transparent 70%);
    pointer-events: none;
}

.quote-layout {
    display: grid;
    grid-template-columns: 4.5fr 7.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    align-items: stretch;
}

/* === 左侧：品牌承诺 === */
.quote-promise {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(155deg, rgba(139, 92, 246, 0.14) 0%, rgba(217, 70, 239, 0.08) 45%, rgba(6, 182, 212, 0.1) 100%);
    border: 1px solid rgba(139, 92, 246, 0.18);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
}

.quote-promise-glow {
    position: absolute;
    top: -40%;
    right: -30%;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(217, 70, 239, 0.22), transparent 65%);
    pointer-events: none;
    animation: quoteGlowPulse 7s ease-in-out infinite;
}

@keyframes quoteGlowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.12); }
}

.quote-promise-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.quote-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #c4b5fd;
    margin-bottom: 22px;
    padding: 7px 16px;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.22);
    border-radius: 24px;
}

.quote-eyebrow i {
    font-size: 11px;
}

.quote-headline {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.quote-headline em {
    font-style: normal;
    font-weight: 800;
    background: linear-gradient(120deg, #d946ef 20%, #06b6d4 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quote-lead {
    font-size: 15px;
    line-height: 1.75;
    color: #cbd5e1;
    margin-bottom: 28px;
    letter-spacing: 0.3px;
}

.quote-promise-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quote-promise-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #e2e8f0;
    line-height: 1.6;
    letter-spacing: 0.2px;
}

.quote-promise-list i {
    color: #06b6d4;
    font-size: 13px;
    margin-top: 4px;
    flex-shrink: 0;
}

.quote-cta {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.quote-cta .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

.quote-cta-note {
    font-size: 12px;
    color: #94a3b8;
    text-align: center;
    margin-top: 14px;
    letter-spacing: 0.4px;
    line-height: 1.6;
}

/* === 右侧：纵向时间线 === */
.quote-timeline {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.quote-timeline-track {
    position: relative;
    padding-left: 8px;
}

/* 纵向连接线 */
.quote-timeline-track::before {
    content: '';
    position: absolute;
    left: 27px;
    top: 18px;
    bottom: 18px;
    width: 2px;
    background: linear-gradient(180deg,
        rgba(217, 70, 239, 0.5) 0%,
        rgba(139, 92, 246, 0.35) 40%,
        rgba(6, 182, 212, 0.35) 70%,
        rgba(6, 182, 212, 0.5) 100%);
    border-radius: 1px;
}

.quote-timeline-item {
    position: relative;
    display: flex;
    gap: 28px;
    padding: 14px 0;
    transition: transform 0.3s ease;
}

.quote-timeline-item:hover {
    transform: translateX(6px);
}

.quote-tl-num {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #fff;
    background: linear-gradient(135deg, #1a1a2e, #16162a);
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.3), 0 4px 16px rgba(139, 92, 246, 0.15);
    transition: all 0.3s ease;
}

.quote-timeline-item:hover .quote-tl-num {
    background: linear-gradient(135deg, #d946ef, #06b6d4);
    box-shadow: 0 0 0 1px rgba(217, 70, 239, 0.5), 0 6px 24px rgba(217, 70, 239, 0.3);
}

.quote-tl-body {
    flex: 1;
    padding-top: 4px;
}

.quote-tl-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.quote-tl-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #06b6d4;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.12), rgba(6, 182, 212, 0.12));
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 10px;
    flex-shrink: 0;
}

.quote-tl-body h4 {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
    margin: 0;
}

.quote-tl-body p {
    color: #9ca3af;
    font-size: 13.5px;
    line-height: 1.7;
    margin: 0;
    letter-spacing: 0.2px;
}

/* === 底部流程 === */
.quote-flow {
    margin-top: auto;
    padding: 20px 24px;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.quote-flow-label {
    font-size: 12px;
    font-weight: 600;
    color: #c4b5fd;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.quote-flow-steps {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    justify-content: flex-end;
}

.quote-flow-step {
    font-size: 13px;
    color: #e2e8f0;
    font-weight: 500;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.quote-flow-arrow {
    color: rgba(139, 92, 246, 0.5);
    font-size: 11px;
}

/* === 响应式 === */
@media (max-width: 968px) {
    .quote-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .quote-promise {
        padding: 40px 32px;
    }
    .quote-headline {
        font-size: 28px;
    }
}

@media (max-width: 640px) {
    .quote {
        padding: 70px 0;
    }
    .quote-promise {
        padding: 32px 24px;
    }
    .quote-headline {
        font-size: 25px;
    }
    .quote-lead {
        font-size: 14px;
    }
    .quote-timeline-item {
        gap: 18px;
    }
    .quote-tl-num {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    .quote-tl-body h4 {
        font-size: 16px;
    }
    .quote-tl-body p {
        font-size: 13px;
    }
    .quote-flow {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 18px 20px;
    }
    .quote-flow-steps {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 8px;
    }
    .quote-cta .btn-primary {
        font-size: 14px;
        padding: 14px 20px;
    }
}

/* ========== 浅色主题 ========== */
[data-theme="light"] .quote {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
}

[data-theme="light"] .quote-promise {
    background: linear-gradient(155deg, rgba(139, 92, 246, 0.1) 0%, rgba(217, 70, 239, 0.06) 45%, rgba(6, 182, 212, 0.08) 100%);
    border-color: rgba(139, 92, 246, 0.2);
}

[data-theme="light"] .quote-eyebrow {
    color: #7c3aed;
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.25);
}

[data-theme="light"] .quote-headline {
    color: #1e293b;
}

[data-theme="light"] .quote-lead {
    color: #475569;
}

[data-theme="light"] .quote-promise-list li {
    color: #334155;
}

[data-theme="light"] .quote-cta {
    border-top-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .quote-cta-note {
    color: #64748b;
}

[data-theme="light"] .quote-tl-num {
    background: #fff;
    color: #7c3aed;
    box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.25), 0 4px 16px rgba(139, 92, 246, 0.1);
}

[data-theme="light"] .quote-timeline-item:hover .quote-tl-num {
    background: linear-gradient(135deg, #d946ef, #06b6d4);
    color: #fff;
}

[data-theme="light"] .quote-tl-icon {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.1), rgba(6, 182, 212, 0.1));
    border-color: rgba(139, 92, 246, 0.15);
}

[data-theme="light"] .quote-tl-body h4 {
    color: #1e293b;
}

[data-theme="light"] .quote-tl-body p {
    color: #64748b;
}

[data-theme="light"] .quote-flow {
    background: rgba(248, 250, 252, 0.9);
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .quote-flow-label {
    color: #7c3aed;
}

[data-theme="light"] .quote-flow-step {
    color: #334155;
}

[data-theme="light"] .quote-flow-arrow {
    color: rgba(139, 92, 246, 0.4);
}

.certifications {
    padding: 100px 0;
}

.cert-marquee {
    margin-top: 50px;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.cert-marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: certScroll 40s linear infinite;
}

.cert-marquee:hover .cert-marquee-track {
    animation-play-state: paused;
}

@keyframes certScroll {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 12px)); }
}

.cert-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    flex-shrink: 0;
    min-width: 340px;
}

.cert-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.4), rgba(6, 182, 212, 0.4));
    -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.3s ease;
}

.cert-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(6, 182, 212, 0.12), 0 0 20px rgba(217, 70, 239, 0.06);
}

.cert-card:hover::before {
    opacity: 1;
}

.cert-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.15), rgba(6, 182, 212, 0.15));
    font-size: 22px;
    color: #06b6d4;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.cert-card:hover .cert-card-icon {
    transform: scale(1.1);
    color: #d946ef;
}

.cert-card-body {
    flex: 1;
}

.cert-card-body h3 {
    font-size: 15px;
    color: #fff;
    margin-bottom: 4px;
    white-space: nowrap;
}

.cert-card-body p {
    font-size: 12px;
    color: #9ca3af;
    white-space: nowrap;
}

.cert-tag {
    padding: 4px 10px;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.15), rgba(6, 182, 212, 0.15));
    border: 1px solid rgba(217, 70, 239, 0.25);
    border-radius: 8px;
    font-size: 10px;
    font-weight: 600;
    color: #06b6d4;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.cert-card:hover .cert-tag {
    border-color: rgba(217, 70, 239, 0.5);
    color: #d946ef;
}

[data-theme="light"] .cert-card {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.01));
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .cert-card:hover {
    box-shadow: 0 12px 30px rgba(6, 182, 212, 0.08), 0 0 20px rgba(217, 70, 239, 0.04);
}

[data-theme="light"] .cert-card-body h3 {
    color: #1e293b;
}

[data-theme="light"] .cert-card-body p {
    color: #64748b;
}

[data-theme="light"] .cert-card-icon {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.1), rgba(6, 182, 212, 0.1));
}

[data-theme="light"] .cert-tag {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.08), rgba(6, 182, 212, 0.08));
    border-color: rgba(217, 70, 239, 0.2);
    color: #0891b2;
}

[data-theme="light"] .consult-menu {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .consult-menu-item {
    color: #334155;
}

[data-theme="light"] .consult-menu-item:hover {
    background: rgba(6, 182, 212, 0.1);
    color: #06b6d4;
}

[data-theme="light"] .news {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
}

[data-theme="light"] .news-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

[data-theme="light"] .news-card:hover {
    border-color: rgba(6, 182, 212, 0.3);
}

[data-theme="light"] .news-category {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.1), rgba(6, 182, 212, 0.1));
    color: #06b6d4;
}

[data-theme="light"] .news-card p {
    color: #64748b;
}

[data-theme="light"] .news-date,
[data-theme="light"] .news-readtime {
    color: #94a3b8;
}

[data-theme="light"] .news-readmore {
    background: linear-gradient(135deg, #d946ef, #06b6d4);
    color: #fff;
}

[data-theme="light"] .news-section {
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

[data-theme="light"] .topic-item:hover {
    background: rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .topic-rank {
    color: rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .topic-name {
    color: #475569;
}

[data-theme="light"] .topic-item:hover .topic-name {
    color: #06b6d4;
}

[data-theme="light"] .newsletter p {
    color: #64748b;
}

[data-theme="light"] .newsletter-form input {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
    color: #1e293b;
}

[data-theme="light"] .newsletter-form input::placeholder {
    color: #94a3b8;
}

[data-theme="light"] .chat-container {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
    border: 1px solid #e2e8f0;
}

[data-theme="light"] .chat-header {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.05), rgba(6, 182, 212, 0.05));
}

[data-theme="light"] .chat-title {
    color: #1e293b;
}

[data-theme="light"] .chat-close {
    background: rgba(0, 0, 0, 0.05);
    color: #64748b;
}

[data-theme="light"] .chat-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #1e293b;
}

[data-theme="light"] .message-content {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
}

[data-theme="light"] .user-message .message-content {
    background: linear-gradient(135deg, #d946ef, #06b6d4);
    border: none;
}

[data-theme="light"] .message-content p {
    color: #334155;
}

[data-theme="light"] .user-message .message-content p {
    color: #fff;
}

[data-theme="light"] .message-time {
    color: #94a3b8;
}

[data-theme="light"] .chat-input-area input {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
    color: #1e293b;
}

[data-theme="light"] .chat-input-area input::placeholder {
    color: #94a3b8;
}

[data-theme="light"] .team-card h4 {
    color: #1e293b;
}

/* Cookie Page Styles (used by cookie.html) */
.cookie-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.cookie-type-item {
    padding: 16px;
    background: rgba(217, 70, 239, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(217, 70, 239, 0.15);
}

.cookie-type-item h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e879f9;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.cookie-type-item h4 i {
    font-size: 0.85rem;
}

.cookie-type-item p {
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.5;
}

.cookie-list {
    list-style: none;
    margin-top: 12px;
}

.cookie-list li {
    padding: 8px 0;
    color: #cbd5e1;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.cookie-list li:last-child {
    border-bottom: none;
}

.cookie-list li::before {
    content: '✓';
    color: #22c55e;
    font-weight: bold;
    flex-shrink: 0;
}

.cookie-list li a {
    color: #06b6d4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cookie-list li a:hover {
    color: #d946ef;
}

/* Light Theme Cookie Page */
[data-theme="light"] .cookie-type-item {
    background: rgba(217, 70, 239, 0.05);
    border-color: rgba(217, 70, 239, 0.2);
}

[data-theme="light"] .cookie-type-item h4 {
    color: #9333ea;
}

[data-theme="light"] .cookie-type-item p {
    color: #64748b;
}

[data-theme="light"] .cookie-list li {
    color: #475569;
    border-color: rgba(0, 0, 0, 0.06);
}

/* Cookie Page Responsive */
@media (max-width: 768px) {
    .cookie-types {
        grid-template-columns: 1fr;
    }
}

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: #fff;
    padding: 14px 24px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10000;
    font-size: 0.95rem;
    font-weight: 500;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-success {
    background: linear-gradient(135deg, #065f46, #047857);
    border-color: rgba(34, 197, 94, 0.3);
}

.toast-success i {
    color: #4ade80;
}

.toast-info {
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
    border-color: rgba(59, 130, 246, 0.3);
}

.toast-info i {
    color: #93c5fd;
}

.toast i {
    font-size: 1.2rem;
}

[data-theme="light"] .toast {
    background: linear-gradient(135deg, #fff, #f8fafc);
    color: #1e293b;
    border-color: #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .news-content h3 {
    color: #1e293b;
}

[data-theme="light"] .news-section h4 {
    color: #1e293b;
}

[data-theme="light"] .newsletter h4 {
    color: #1e293b;
}

[data-theme="light"] .team-title {
    color: #1e293b;
}

[data-theme="light"] .about-stat .stat-label {
    color: #64748b;
}

[data-theme="light"] .work-status.open {
    color: #10b981;
}

[data-theme="light"] .work-status.closed {
    color: #ef4444;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d946ef, #06b6d4);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(217, 70, 239, 0.3);
    will-change: transform, opacity;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(217, 70, 239, 0.4);
}

.back-to-top:active {
    transform: scale(0.95);
}

.animate-on-scroll {
    will-change: transform, opacity;
}

.animate-number {
    will-change: contents;
}

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.5s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

html {
    scroll-behavior: smooth;
}

@media (max-width: 768px) {
    [data-theme="light"] .nav-links {
        background: rgba(255, 255, 255, 0.98);
    }
    
    [data-theme="light"] .nav-links a {
        color: #1e293b;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-title-gradient {
        font-size: 44px;
    }
    
    .hero-blob {
        opacity: 0.25;
    }
    
    .blob-1 {
        width: 250px;
        height: 250px;
    }
    
    .blob-2 {
        width: 300px;
        height: 300px;
    }
    
    .blob-3 {
        width: 200px;
        height: 200px;
    }
    
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .core-platform-card {
        padding: 25px 15px;
    }
    
    .core-platform-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .core-platform-name {
        font-size: 16px;
    }
    
    .other-platforms {
        gap: 10px;
    }
    
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .industry-card {
        padding: 18px 15px;
    }
    
    .industry-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .industry-card h3 {
        font-size: 14px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .services-grid .service-card,
    .services-grid .service-card:nth-last-child(-n+2) {
        grid-column: span 1;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }
    
    .service-card h3 {
        font-size: 18px;
    }
    
    .service-features li {
        font-size: 13px;
        padding: 6px 0;
    }
    
    .btn-service {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .quote-card {
        padding: 30px 20px;
    }
    
    .quote-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .case-card {
        min-height: 280px;
    }
    
    .cert-card {
        min-width: 280px;
        padding: 16px 20px;
    }
    
    .cert-card-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .cert-card-body h3 {
        font-size: 13px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .news-card {
        min-height: 300px;
    }
    
    .faq-item {
        padding: 15px;
    }
    
    .faq-question {
        font-size: 15px;
    }
    
    .faq-answer {
        font-size: 14px;
        padding: 0 10px 15px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info h3 {
        font-size: 20px;
    }

    .contact-form {
        padding: 24px 20px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .btn-full {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 28px;
        font-size: 14px;
        min-height: 48px;
    }
    
    .back-to-top {
        width: 44px;
        height: 44px;
        bottom: 20px;
        right: 20px;
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-desc {
        font-size: 14px;
    }
    
    .section-stats {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
    
    .section-stat {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 30px;
    }
    
    .hero-title-gradient {
        font-size: 38px;
    }
    
    .hero p {
        font-size: 14px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .container {
    padding: 0 15px;
    }
}

.form-input-wrapper {
    position: relative;
}

.form-input-wrapper input,
.form-input-wrapper textarea {
    transition: all 0.3s ease;
}

.form-input-wrapper input:focus,
.form-input-wrapper textarea:focus {
    border-color: rgba(6, 182, 212, 0.6) !important;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.form-input-wrapper input.valid,
.form-input-wrapper textarea.valid {
    border-color: rgba(16, 185, 129, 0.5) !important;
}

.form-input-wrapper input.invalid,
.form-input-wrapper textarea.invalid {
    border-color: rgba(239, 68, 68, 0.6) !important;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

.form-success {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    padding: 40px 60px;
    border-radius: 20px;
    text-align: center;
    z-index: 9999;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.3);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.form-success.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.form-success-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.form-success h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.form-success p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.form-overlay.show {
    opacity: 1;
    visibility: visible;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-icon:hover {
    transform: translateY(-3px);
    color: #fff;
}

.footer-social-icon.facebook:hover {
    background: linear-gradient(135deg, #1877f2, #3b5998);
    border-color: #1877f2;
}

.footer-social-icon.twitter:hover {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
    border-color: #1da1f2;
}

.footer-social-icon.instagram:hover {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: #e6683c;
}

.footer-social-icon.linkedin:hover {
    background: linear-gradient(135deg, #0077b5, #00a0dc);
    border-color: #0077b5;
}

[data-theme="light"] .footer-social-icon {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
    color: #64748b;
}

[data-theme="light"] .footer-social-icon:hover {
    color: #fff;
}

/* ==================== 招聘页面样式 ==================== */
.careers-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.careers-hero {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.careers-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.12), rgba(6, 182, 212, 0.12));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    font-size: 14px;
    color: #06b6d4;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
}

.careers-badge i {
    font-size: 13px;
}

.careers-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin: 0 0 24px;
    letter-spacing: 1px;
}

.careers-subtitle {
    font-size: 16px;
    line-height: 1.8;
    color: #9ca3af;
    margin: 0 0 40px;
    letter-spacing: 0.3px;
}

.careers-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.careers-stat {
    text-align: center;
}

.careers-stat .stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #d946ef, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

.careers-stat .stat-label {
    display: block;
    font-size: 13px;
    color: #64748b;
    letter-spacing: 0.5px;
}

.careers-section {
    max-width: 960px;
    margin: 0 auto 72px;
    padding: 0 20px;
}

.careers-section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: 1px;
}

.careers-section-desc {
    text-align: center;
    font-size: 15px;
    color: #9ca3af;
    margin: 0 0 40px;
    letter-spacing: 0.3px;
}

.careers-benefits {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.benefit-card {
    position: relative;
    padding: 28px 26px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    grid-column: span 2;
}

.benefit-card:nth-child(5),
.benefit-card:nth-child(6) {
    grid-column: span 3;
}

.benefit-featured {
    grid-column: span 4;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.07), rgba(6, 182, 212, 0.04));
    border-color: rgba(139, 92, 246, 0.12);
}

.benefit-glow {
    position: absolute;
    top: -40%;
    right: -15%;
    width: 55%;
    height: 180%;
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.1), transparent 70%);
    pointer-events: none;
    transition: opacity 0.4s ease;
    opacity: 0.5;
}

.benefit-card:hover {
    border-color: rgba(6, 182, 212, 0.2);
    transform: translateY(-3px);
}

.benefit-featured:hover {
    border-color: rgba(217, 70, 239, 0.25);
    box-shadow: 0 16px 40px rgba(139, 92, 246, 0.08);
}

.benefit-featured:hover .benefit-glow {
    opacity: 1;
}

.benefit-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.12), rgba(6, 182, 212, 0.12));
    font-size: 17px;
    color: #06b6d4;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.benefit-featured .benefit-icon {
    width: 52px;
    height: 52px;
    font-size: 22px;
    border-radius: 13px;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.2), rgba(6, 182, 212, 0.2));
    box-shadow: 0 0 24px rgba(139, 92, 246, 0.12);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.08);
    color: #d946ef;
}

.benefit-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px;
    letter-spacing: 0.5px;
}

.benefit-featured h3 {
    font-size: 20px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff 30%, #c4b5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-card p {
    font-size: 13px;
    line-height: 1.7;
    color: #9ca3af;
    margin: 0;
}

.benefit-featured p {
    font-size: 15px;
    line-height: 1.8;
    color: #cbd5e1;
}

.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.job-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.job-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.08);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 32px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.job-title-group {
    flex: 1;
}

.job-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: 0.5px;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.job-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #9ca3af;
    letter-spacing: 0.3px;
}

.job-tag i {
    font-size: 12px;
    color: #06b6d4;
}

.job-dept {
    flex-shrink: 0;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.12), rgba(6, 182, 212, 0.12));
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #06b6d4;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.job-body {
    padding: 24px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.job-part h4 {
    font-size: 14px;
    font-weight: 600;
    color: #e2e8f0;
    margin: 0 0 12px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-part h4::before {
    content: '';
    width: 3px;
    height: 14px;
    background: linear-gradient(180deg, #d946ef, #06b6d4);
    border-radius: 2px;
}

.job-part ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.job-part li {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.7;
    color: #9ca3af;
}

.job-part li::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #8b5cf6;
    font-size: 13px;
}

.job-footer {
    padding: 20px 32px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.job-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #8b5cf6, #d946ef);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(139, 92, 246, 0.3);
}

.job-apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(139, 92, 246, 0.45);
    filter: brightness(1.08);
    color: #fff;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, rgba(217, 70, 239, 0.3), rgba(6, 182, 212, 0.3));
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-number {
    width: 48px;
    height: 48px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1a2e, #16162a);
    border: 2px solid rgba(139, 92, 246, 0.4);
    font-size: 16px;
    font-weight: 700;
    color: #06b6d4;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.process-step:hover .process-number {
    border-color: #d946ef;
    color: #d946ef;
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(217, 70, 239, 0.25);
}

.process-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px;
    letter-spacing: 0.5px;
}

.process-content p {
    font-size: 13px;
    line-height: 1.7;
    color: #9ca3af;
    margin: 0;
    padding: 0 8px;
}

.careers-cta {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

.careers-cta-content {
    text-align: center;
    padding: 48px 40px;
    background: linear-gradient(145deg, rgba(217, 70, 239, 0.06), rgba(6, 182, 212, 0.06));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
}

.careers-cta-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: 0.5px;
}

.careers-cta-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #9ca3af;
    margin: 0 0 28px;
}

/* 招聘页面 - 浅色主题 */
[data-theme="light"] .careers-title {
    color: #0f172a;
}

[data-theme="light"] .careers-subtitle,
[data-theme="light"] .careers-section-desc,
[data-theme="light"] .benefit-card p,
[data-theme="light"] .job-part li,
[data-theme="light"] .process-content p,
[data-theme="light"] .careers-cta-content p {
    color: #64748b;
}

[data-theme="light"] .careers-section-title,
[data-theme="light"] .benefit-card h3,
[data-theme="light"] .job-title,
[data-theme="light"] .job-part h4,
[data-theme="light"] .process-content h3,
[data-theme="light"] .careers-cta-content h3 {
    color: #1e293b;
}

[data-theme="light"] .careers-stats {
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .careers-stat .stat-label {
    color: #94a3b8;
}

[data-theme="light"] .benefit-card,
[data-theme="light"] .job-card {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.02));
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .benefit-featured {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.04), rgba(6, 182, 212, 0.03));
    border-color: rgba(139, 92, 246, 0.15);
}

[data-theme="light"] .benefit-featured h3 {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="light"] .benefit-featured p {
    color: #475569;
}

[data-theme="light"] .job-header,
[data-theme="light"] .job-footer {
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .job-tag {
    color: #64748b;
}

[data-theme="light"] .careers-cta-content {
    background: linear-gradient(145deg, rgba(217, 70, 239, 0.04), rgba(6, 182, 212, 0.04));
    border-color: rgba(139, 92, 246, 0.2);
}

[data-theme="light"] .process-number {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border-color: rgba(139, 92, 246, 0.3);
}

/* 招聘页面 - 平板适配 */
@media (max-width: 1024px) {
    .careers-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-card,
    .benefit-card:nth-child(5),
    .benefit-card:nth-child(6) {
        grid-column: span 1;
    }

    .benefit-featured {
        grid-column: span 2;
    }
}

/* 招聘页面 - 移动端适配 */
@media (max-width: 768px) {
    .careers-page {
        padding: 90px 0 60px;
    }

    .careers-title {
        font-size: 30px;
    }

    .careers-subtitle {
        font-size: 14px;
    }

    .careers-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .careers-stat .stat-number {
        font-size: 22px;
    }

    .careers-section-title {
        font-size: 22px;
    }

    .careers-benefits {
        grid-template-columns: 1fr;
    }

    .benefit-card,
    .benefit-card:nth-child(5),
    .benefit-card:nth-child(6),
    .benefit-featured {
        grid-column: auto;
    }

    .benefit-featured h3 {
        font-size: 18px;
    }

    .benefit-featured p {
        font-size: 14px;
    }

    .job-header {
        flex-direction: column;
        gap: 14px;
        padding: 24px 20px 18px;
    }

    .job-dept {
        align-self: flex-start;
    }

    .job-body {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 20px;
    }

    .job-footer {
        padding: 18px 20px 24px;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 20px;
    }

    .process-timeline::before {
        display: none;
    }

    .careers-cta-content {
        padding: 36px 24px;
    }

    .careers-cta-content h3 {
        font-size: 19px;
    }
}

@media (max-width: 480px) {
    .careers-title {
        font-size: 26px;
    }

    .careers-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   网站内容防抄袭保护
   ======================================== */

/* 禁用文本选择（表单元素除外） */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

input,
textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* 禁用图片拖拽 */
img {
    -webkit-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

/* 打印保护 — 打印时隐藏所有内容 */
@media print {
    body {
        display: none !important;
    }
}

/* ========================================
   移动端视觉排版优化
   ======================================== */

@media (max-width: 768px) {
    /* === 全局间距优化 === */
    section {
        padding: 56px 0;
    }

    .container {
        padding: 0 16px;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .section-badge {
        font-size: 12px;
        padding: 6px 16px;
        margin-bottom: 16px;
    }

    .section-desc {
        font-size: 14px;
        line-height: 1.6;
    }

    /* === 页脚排版优化 === */
    .footer {
        padding: 48px 0 24px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 32px;
    }

    .footer-hero {
        padding: 24px 20px;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
        margin-bottom: 12px;
    }

    .footer-tagline {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .footer-divider {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-desc {
        font-size: 13px;
        line-height: 1.6;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-grid {
        gap: 28px;
    }

    .footer-section-title {
        font-size: 15px;
        margin-bottom: 14px;
    }

    /* 服务分类保持 2 列，避免列表过长 */
    .footer-service-cats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 16px;
    }

    .footer-cat-label {
        font-size: 12px;
    }

    .footer-nav-sm .footer-link {
        font-size: 13px;
    }

    .footer-contact-card {
        padding: 20px;
    }

    /* 联系信息单列，整体居中+左对齐 */
    .contact-card {
        grid-template-columns: 1fr;
        gap: 14px;
        max-width: 320px;
        margin: 0 auto;
    }

    .contact-row {
        justify-content: flex-start;
        font-size: 13px;
        white-space: normal;
        text-align: left;
        word-break: break-word;
    }

    /* newsletter 纵向布局 */
    .footer-newsletter-section {
        margin: 28px 0;
    }

    .newsletter-container {
        flex-direction: column;
        text-align: center;
        padding: 28px 20px;
        gap: 20px;
    }

    .newsletter-title {
        font-size: 20px;
    }

    .newsletter-desc {
        font-size: 13px;
    }

    .newsletter-form {
        width: 100%;
        max-width: none;
        margin: 0 auto;
    }
    .btn-newsletter {
        width: 100%;
        justify-content: center;
    }

    /* 页脚底部居中 */
    .footer-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center;
        padding-top: 24px;
    }

    .footer-legal {
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    .footer-bottom p {
        font-size: 12px;
        min-width: 0;
    }
}

@media (max-width: 480px) {
    /* 小屏幕进一步优化 */
    .footer-service-cats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .footer-hero {
        padding: 20px 16px;
    }

    .newsletter-container {
        padding: 24px 16px;
    }

    .footer-contact-card {
        padding: 16px;
    }

    .social-item {
        width: 40px;
        height: 40px;
    }
}

/* ========================================
   移动端模块级排版优化
   ======================================== */

/* 悬浮咨询菜单文案：桌面端显示全称，移动端显示简称 */
.consult-text-short { display: none; }

@media (max-width: 768px) {
    .consult-text-full { display: none; }
    .consult-text-short { display: inline; }
    /* === 痛点模块 CTA 居中 === */
    .pain-cta {
        display: flex;
        justify-content: center;
        text-align: center;
    }

    /* === 服务卡片"立即咨询"交替左右对齐 === */
    .service-cta {
        display: block;
        text-align: right;
    }
    .service-card:nth-child(even) .service-cta {
        text-align: left;
    }

    /* === 案例模块"获取专属方案"居中 === */
    .portfolio-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* === "定制您的增长方案"模块标题居中 === */
    .quote-promise,
    .quote-promise-inner {
        text-align: center;
    }
    .quote-eyebrow {
        justify-content: center;
    }
    .quote-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .quote-promise-list {
        max-width: 320px;
        margin: 0 auto;
    }

    /* === FAQ 答案折叠修复 — 防止内容漏出 === */
    .faq-answer {
        max-height: 0 !important;
        padding: 0 !important;
        overflow: hidden;
    }
    .faq-item.active .faq-answer {
        max-height: 600px !important;
        padding: 0 !important;
    }
    .faq-answer p {
        padding: 0 18px 16px 18px;
        font-size: 14px;
    }

    /* === "免费咨询" CTA 居中 === */
    .faq-cta-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .faq-cta-text {
        text-align: center;
    }
    .faq-cta-btn {
        margin: 0 auto;
    }

    /* === 联系方式：整体居中，文本左对齐 === */
    .contact-info {
        max-width: 360px;
        margin: 0 auto;
    }
    .contact-info h3 {
        text-align: center;
    }
    .contact-item {
        justify-content: flex-start;
        text-align: left;
    }
    .contact-item > div {
        text-align: left;
    }
    .working-hours {
        text-align: left;
    }

    /* === 页脚"服务/公司/资源"2列布局 === */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 20px;
    }
    .footer-services {
        grid-column: 1 / -1;
    }
    .footer-contact-card {
        grid-column: 1 / -1;
    }
    .footer-section-title {
        text-align: center;
    }
    .footer-nav {
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* 小屏幕页脚恢复单列 */
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

